summaryrefslogtreecommitdiffstats
path: root/modules/session
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2012-10-12 18:41:34 +0200
committerChristophe Jaillet <jailletc36@apache.org>2012-10-12 18:41:34 +0200
commit2cf5acd15fd58fff1c25e7ef1d2c3811e5c1d139 (patch)
treee45d449efa166e5a86e6c94d5b5ecacbdcde266b /modules/session
parentExample improvement courtesy of Mario Brandt (diff)
downloadapache2-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.c2
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);