summaryrefslogtreecommitdiff
path: root/modules/aaa/mod_authn_socache.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/aaa/mod_authn_socache.c')
-rw-r--r--modules/aaa/mod_authn_socache.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/aaa/mod_authn_socache.c b/modules/aaa/mod_authn_socache.c
index 1f5f4b7e83..a11cf31617 100644
--- a/modules/aaa/mod_authn_socache.c
+++ b/modules/aaa/mod_authn_socache.c
@@ -232,10 +232,9 @@ static const char *construct_key(request_rec *r, const char *context,
if (!strcmp(context, "directory")) {
/* FIXME: are we at risk of this blowing up? */
char *slash = strrchr(r->uri, '/');
- context = apr_palloc(r->pool, slash - r->uri
- + strlen(r->server->server_hostname) + 2);
+ context = apr_palloc(r->pool, slash - r->uri +
+ strlen(r->server->server_hostname) + 1);
strcpy(context, r->server->server_hostname);
- strcat(context, ":");
strncat(context, r->uri, slash - r->uri);
}
else if (!strcmp(context, "server")) {