Commit 6ccf6e7d authored by Nick Kew's avatar Nick Kew
Browse files

mod_authn_socache: tidy up r1199565.

And we don't need that separator in the namespacing string -
it's not for human consumption.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199567 13f79535-47bb-0310-9956-ffa450edef68
parent ae7f6ae2
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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")) {