diff options
author | Stefan Fritsch <sf@apache.org> | 2010-01-10 22:07:26 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2010-01-10 22:07:26 +0100 |
commit | 2173f71a93dbd3353470acb6d207654f17d06cfa (patch) | |
tree | 89bbfe9af4d3f471681664ff756d1cecbd8e8ce7 /modules/cache/cache_storage.c | |
parent | We shouldn't need to create r->allowed_methods twice! (diff) | |
download | apache2-2173f71a93dbd3353470acb6d207654f17d06cfa.tar.xz apache2-2173f71a93dbd3353470acb6d207654f17d06cfa.zip |
Allow several of the configured session identifiers to be found and removed in
a single request.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@897705 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/cache/cache_storage.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/cache/cache_storage.c b/modules/cache/cache_storage.c index d5674428ea..a44b9e4dcc 100644 --- a/modules/cache/cache_storage.c +++ b/modules/cache/cache_storage.c @@ -498,7 +498,7 @@ apr_status_t cache_generate_key_default(request_rec *r, apr_pool_t* p, && (*(param + len + 1) == '=') && !strchr(param + len + 2, '/')) { path = apr_pstrndup(p, path, param - path); - break; + continue; } /* * Check if the identifier is in the querystring and cut it out. @@ -552,7 +552,6 @@ apr_status_t cache_generate_key_default(request_rec *r, apr_pool_t* p, } } } - break; } } } |