diff options
author | Ruediger Pluem <rpluem@apache.org> | 2009-05-25 15:24:47 +0000 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2009-05-25 15:24:47 +0000 |
commit | 023b0a4f61419293d2ee703fe1e91ca2ec11cc20 (patch) | |
tree | c41f0d793ae75644579b24bc65ca20837ed280ae /modules/cache/cache_storage.c | |
parent | cfc67db1487ef7098053bc75b8663c4793cea94a (diff) | |
download | httpd-023b0a4f61419293d2ee703fe1e91ca2ec11cc20.tar.gz |
* Correctly detect if CacheIgnoreURLSessionIdentifiers is set.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@778439 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache/cache_storage.c')
-rw-r--r-- | modules/cache/cache_storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cache/cache_storage.c b/modules/cache/cache_storage.c index 6ce8ca3746..08411f9cb1 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; |