From: Michael Wallner Date: Fri, 14 Oct 2005 15:48:24 +0000 (+0000) Subject: - allow negative time offsets X-Git-Tag: RELEASE_0_16_0~12 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=61e3ea78efcc501cf7ec2df4749aa92935c0964e;hp=91c98198094e89bd2a0d0648b60dd2c361d3054b;ds=inline - allow negative time offsets --- diff --git a/http_request_api.c b/http_request_api.c index 35404f1..b2da719 100644 --- a/http_request_api.c +++ b/http_request_api.c @@ -542,12 +542,15 @@ PHP_HTTP_API STATUS _http_request_init(CURL *ch, http_request_method meth, char /* lastmodified */ if (zoption = http_curl_getopt(options, "lastmodified", IS_LONG)) { - if (Z_LVAL_P(zoption) > 0) { + if (Z_LVAL_P(zoption)) { + if (Z_LVAL_P(zoption) > 0) { + HTTP_CURL_OPT(TIMEVALUE, Z_LVAL_P(zoption)); + } else { + HTTP_CURL_OPT(TIMEVALUE, time(NULL) + Z_LVAL_P(zoption)); + } HTTP_CURL_OPT(TIMECONDITION, range_req ? CURL_TIMECOND_IFUNMODSINCE : CURL_TIMECOND_IFMODSINCE); - HTTP_CURL_OPT(TIMEVALUE, Z_LVAL_P(zoption)); } else { HTTP_CURL_OPT(TIMECONDITION, CURL_TIMECOND_NONE); - HTTP_CURL_OPT(TIMEVALUE, 0); } }