]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Write a 100 times - save your files before copy and commit.. fixed
authorDirk-Willem van Gulik <dirkx@apache.org>
Mon, 13 May 2002 23:12:02 +0000 (23:12 +0000)
committerDirk-Willem van Gulik <dirkx@apache.org>
Mon, 13 May 2002 23:12:02 +0000 (23:12 +0000)
missing parenthesis which breaks the build.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@95075 13f79535-47bb-0310-9956-ffa450edef68

src/main/http_main.c

index c18d8935c9160921c92c4917d98be7e2dc612fbb..b956a214852fa5cabb3a288ff783c36ee9e284b0 100644 (file)
@@ -3389,7 +3389,7 @@ static void detach(void)
     }
 #endif
 #ifndef NO_SETSID
-    if (pgrp = setsid()) == -1) {
+    if ((pgrp = setsid()) == -1) {
        perror("setsid");
        fprintf(stderr, "%s: setsid failed\n", ap_server_argv0);
        if (!do_detach)