You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2009/05/25 17:24:49 UTC

svn commit: r778439 - /httpd/httpd/trunk/modules/cache/cache_storage.c

Author: rpluem
Date: Mon May 25 15:24:47 2009
New Revision: 778439

URL: http://svn.apache.org/viewvc?rev=778439&view=rev
Log:
* Correctly detect if CacheIgnoreURLSessionIdentifiers is set.

Modified:
    httpd/httpd/trunk/modules/cache/cache_storage.c

Modified: httpd/httpd/trunk/modules/cache/cache_storage.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/cache_storage.c?rev=778439&r1=778438&r2=778439&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/cache_storage.c (original)
+++ httpd/httpd/trunk/modules/cache/cache_storage.c Mon May 25 15:24:47 2009
@@ -479,7 +479,7 @@
      */
     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;