aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/httpd.c')
-rw-r--r--networking/httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 252ad6c2d..ddcb03bca 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -2713,8 +2713,8 @@ static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2713 /* Run a copy of ourself in inetd mode */ 2713 /* Run a copy of ourself in inetd mode */
2714 re_exec(argv_copy); 2714 re_exec(argv_copy);
2715 } 2715 }
2716 argv_copy[0][0] &= 0x7f;
2717 /* parent, or vfork failed */ 2716 /* parent, or vfork failed */
2717 argv_copy[0][0] &= 0x7f; /* undo re_rexec() damage */
2718 close(n); 2718 close(n);
2719 } /* while (1) */ 2719 } /* while (1) */
2720 /* never reached */ 2720 /* never reached */