From: Michael Wallner Date: Wed, 2 Nov 2005 15:11:29 +0000 (+0000) Subject: - typo X-Git-Tag: RELEASE_0_17_0~5 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=f82117306ee996c61611508df95b958f7966a4c1 - typo --- diff --git a/http_response_object.c b/http_response_object.c index 915297e..ec67afc 100644 --- a/http_response_object.c +++ b/http_response_object.c @@ -494,7 +494,7 @@ PHP_METHOD(HttpResponse, setCacheControl) http_error_ex(HE_WARNING, HTTP_E_INVALID_PARAM, "Cache-Control '%s' doesn't match public, private or no-cache", ccontrol); RETURN_FALSE; } else { - size_t cctl_len = spprintf(&cctl, 0, "%s, must-revalidate, max_age=%ld", ccontrol, max_age); + size_t cctl_len = spprintf(&cctl, 0, "%s, must-revalidate, max-age=%ld", ccontrol, max_age); RETVAL_SUCCESS(UPD_STATIC_STRL(cacheControl, cctl, cctl_len)); efree(cctl); }