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:19:53 UTC

svn commit: r778438 - /httpd/httpd/trunk/modules/cache/mod_cache.c

Author: rpluem
Date: Mon May 25 15:19:51 2009
New Revision: 778438

URL: http://svn.apache.org/viewvc?rev=778438&view=rev
Log:
* Use the correct constant.

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

Modified: httpd/httpd/trunk/modules/cache/mod_cache.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache.c?rev=778438&r1=778437&r2=778438&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_cache.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_cache.c Mon May 25 15:19:51 2009
@@ -1006,7 +1006,7 @@
         ? base->ignorequerystring
         : overrides->ignorequerystring;
     ps->ignore_session_id =
-        (overrides->ignore_session_id_set == CACHE_IGNORE_HEADERS_UNSET)
+        (overrides->ignore_session_id_set == CACHE_IGNORE_SESSION_ID_UNSET)
         ? base->ignore_session_id
         : overrides->ignore_session_id;
     return ps;