wrong variable.
PR:
Obtained from:
Submitted by: Geff Hanoian <geff@pier64.com>
Reviewed by: Graham Leggett
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@93803
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 1.3.24
+ *) Fix a NULL variable check in proxy where we were checking the
+ wrong variable. [Geff Hanoian <geff@pier64.com>]
+
*) Fix typo in default config files related to Swedish language
documents. PR: 9906, 10040 [Tomas Ă–gren <stric@ing.umu.se>,
Dennis Lundberg <dennis.lundberg@mdh.se>]
smaxage = -1;
/* extract max-age from request */
- if (cc_cresp && ap_proxy_liststr(cc_req, "max-age", &val))
+ if (cc_req && ap_proxy_liststr(cc_req, "max-age", &val))
maxage_req = atoi(val);
else
maxage_req = -1;