diff options
author | Christophe Jaillet <jailletc36@apache.org> | 2012-10-12 18:41:34 +0200 |
---|---|---|
committer | Christophe Jaillet <jailletc36@apache.org> | 2012-10-12 18:41:34 +0200 |
commit | 2cf5acd15fd58fff1c25e7ef1d2c3811e5c1d139 (patch) | |
tree | e45d449efa166e5a86e6c94d5b5ecacbdcde266b /modules/session | |
parent | Example improvement courtesy of Mario Brandt (diff) | |
download | apache2-2cf5acd15fd58fff1c25e7ef1d2c3811e5c1d139.tar.xz apache2-2cf5acd15fd58fff1c25e7ef1d2c3811e5c1d139.zip |
s/;;/;/
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1397636 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/session')
-rw-r--r-- | modules/session/mod_session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/session/mod_session.c b/modules/session/mod_session.c index 7f855c7277..a3354a59c4 100644 --- a/modules/session/mod_session.c +++ b/modules/session/mod_session.c @@ -334,7 +334,7 @@ static apr_status_t session_identity_encode(request_rec * r, session_rec * z) apr_table_setn(z->entries, SESSION_EXPIRY, expiry); } apr_table_do((int (*) (void *, const char *, const char *)) - identity_count, &length, z->entries, NULL);; + identity_count, &length, z->entries, NULL); buffer = apr_pcalloc(r->pool, length + 1); apr_table_do((int (*) (void *, const char *, const char *)) identity_concat, buffer, z->entries, NULL); |