From: Ken Coar Date: Wed, 28 Nov 2001 15:02:12 +0000 (+0000) Subject: Since we quoted the default -1 group ID, the Makefile hasn't X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37549e7fefcdeb4db8f2287f74529609776dc6e0;p=thirdparty%2Fapache%2Fhttpd.git Since we quoted the default -1 group ID, the Makefile hasn't been finding it to update it properly. Submitted by: Owen Boyle Reviewed by: Ken Coar git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92221 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.tmpl b/Makefile.tmpl index 2b9ec90e188..006ef7d1013 100644 --- a/Makefile.tmpl +++ b/Makefile.tmpl @@ -532,6 +532,7 @@ install-config: -e 's;conf/mime\.types;$(sysconfdir)/mime.types;' \ -e 's;User nobody;User $(conf_user);' \ -e 's;Group #-1;Group $(conf_group);' \ + -e 's;Group "#-1";Group $(conf_group);' \ -e 's;Port 80;Port $(conf_port);' \ -e 's;ServerAdmin you@your.address;ServerAdmin $(conf_serveradmin);' \ -e 's;ServerName new.host.name;ServerName $(conf_servername);' \ diff --git a/src/CHANGES b/src/CHANGES index 8aaa729066d..2eac0097cf3 100644 --- a/src/CHANGES +++ b/src/CHANGES @@ -1,4 +1,8 @@ Changes with Apache 1.3.23 + *) When the default of 'Group #-1' was changed to 'Group "#-1"', + the Makefile wasn't updated to recognise the quotation marks. + [Owen Boyle ] + *) Win32: Do not allow threads to continue handling keepalive requests after a shutdown or restart has ben signaled. [Bill Stoddard]