From f82117306ee996c61611508df95b958f7966a4c1 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 2 Nov 2005 15:11:29 +0000 Subject: [PATCH] - typo --- http_response_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.30.2