Loading STATUS +0 −4 Original line number Diff line number Diff line Loading @@ -112,10 +112,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] *) core: fix r->handler = None case sensitivity trunk patch: http://svn.apache.org/r1735786 2.4.x patch: trunk works +1: covener, ylavic, jim PATCHES PROPOSED TO BACKPORT FROM TRUNK: Loading server/core.c +9 −9 Original line number Diff line number Diff line Loading @@ -4453,18 +4453,18 @@ static int core_override_type(request_rec *r) "Can't evaluate handler expression: %s", err); return HTTP_INTERNAL_SERVER_ERROR; } if (strcmp(val, "none")) { if (val != ap_strstr_c(val, "proxy:unix")) { /* Retained for compatibility -- but not for UDS */ char *tmp = apr_pstrdup(r->pool, val); ap_str_tolower(tmp); r->handler = tmp; val = tmp; } else { if (strcmp(val, "none")) { r->handler = val; } } } else if (conf->handler && strcmp(conf->handler, "none")) { r->handler = conf->handler; } Loading Loading
STATUS +0 −4 Original line number Diff line number Diff line Loading @@ -112,10 +112,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] *) core: fix r->handler = None case sensitivity trunk patch: http://svn.apache.org/r1735786 2.4.x patch: trunk works +1: covener, ylavic, jim PATCHES PROPOSED TO BACKPORT FROM TRUNK: Loading
server/core.c +9 −9 Original line number Diff line number Diff line Loading @@ -4453,18 +4453,18 @@ static int core_override_type(request_rec *r) "Can't evaluate handler expression: %s", err); return HTTP_INTERNAL_SERVER_ERROR; } if (strcmp(val, "none")) { if (val != ap_strstr_c(val, "proxy:unix")) { /* Retained for compatibility -- but not for UDS */ char *tmp = apr_pstrdup(r->pool, val); ap_str_tolower(tmp); r->handler = tmp; val = tmp; } else { if (strcmp(val, "none")) { r->handler = val; } } } else if (conf->handler && strcmp(conf->handler, "none")) { r->handler = conf->handler; } Loading