From: Dirk-Willem van Gulik Date: Mon, 13 May 2002 23:12:02 +0000 (+0000) Subject: Write a 100 times - save your files before copy and commit.. fixed X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad1b016f7c89502d1b31400d9500490515e6b030;p=thirdparty%2Fapache%2Fhttpd.git Write a 100 times - save your files before copy and commit.. fixed 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 --- diff --git a/src/main/http_main.c b/src/main/http_main.c index c18d8935c91..b956a214852 100644 --- a/src/main/http_main.c +++ b/src/main/http_main.c @@ -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)