git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@710218
13f79535-47bb-0310-9956-
ffa450edef68
const char *interp;
if (cmd->path == NULL) {
- fake = f;
- real = r;
- interp = i;
if (r == NULL || !strcasecmp(r, "interpolate")) {
return "ProxyPassReverse needs a path when not defined in a location";
}
+ fake = f;
+ real = r;
+ interp = i;
}
else {
- fake = cmd->path;
- real = f;
if (r && strcasecmp(r, "interpolate")) {
return "ProxyPassReverse can not have a path when defined in a location";
}
+ fake = cmd->path;
+ real = f;
interp = r;
}