git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@780648
13f79535-47bb-0310-9956-
ffa450edef68
failed to send a request body. PR 46949 [Ruediger Pluem]
*) mod_alias: check sanity in Redirect arguments.
- PR 44729 [Sönke Tesch <st kino-fahrplan.de>]
+ PR 44729 [Sönke Tesch <st kino-fahrplan.de>, Jim Jagielski]
*) mod_proxy_http: fix Host: header for literal IPv6 addresses.
PR 47177 [Carlos Garcia Braschi <cgbraschi gmail.com>]
const char *f = arg2;
const char *url = arg3;
- if (arg3 != NULL) {
- if (!strcasecmp(arg1, "gone"))
- status = HTTP_GONE;
- else if (!strcasecmp(arg1, "permanent"))
+ if (!arg3 && !strcasecmp(arg1, "gone")) {
+ status = HTTP_GONE;
+ }
+ else if (arg3) {
+ if (!strcasecmp(arg1, "permanent"))
status = HTTP_MOVED_PERMANENTLY;
else if (!strcasecmp(arg1, "temp"))
status = HTTP_MOVED_TEMPORARILY;