From: Ruediger Pluem Date: Mon, 25 May 2009 15:24:47 +0000 (+0000) Subject: * Correctly detect if CacheIgnoreURLSessionIdentifiers is set. X-Git-Tag: 2.3.3~545 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=023b0a4f61419293d2ee703fe1e91ca2ec11cc20;p=thirdparty%2Fapache%2Fhttpd.git * Correctly detect if CacheIgnoreURLSessionIdentifiers is set. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@778439 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/cache_storage.c b/modules/cache/cache_storage.c index 6ce8ca3746f..08411f9cb10 100644 --- a/modules/cache/cache_storage.c +++ b/modules/cache/cache_storage.c @@ -479,7 +479,7 @@ apr_status_t cache_generate_key_default(request_rec *r, apr_pool_t* p, */ path = r->parsed_uri.path; querystring = r->parsed_uri.query; - if (conf->ignore_session_id_set == CACHE_IGNORE_SESSION_ID_SET) { + if (conf->ignore_session_id->nelts) { int i; char **identifier;