From: Ken Coar Date: Thu, 27 May 1999 16:49:26 +0000 (+0000) Subject: These -1s cause us a lot of grief. When is a signed int not X-Git-Tag: apache-apr-merge-3~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4d053948cd91d178063cb178aa13b8633e7181d;p=thirdparty%2Fapache%2Fhttpd.git These -1s cause us a lot of grief. When is a signed int not a signed int? When it's an unsigned int or long! {Sigh} git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83248 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index bcfbd439b37..ef6d4d57270 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -14,7 +14,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.143 $ ($Date: 1999/02/21 20:35:12 $) + $Revision: 1.144 $ ($Date: 1999/05/27 16:49:26 $)

The latest version of this FAQ is always available from the main @@ -959,7 +959,11 @@ Group directive (probably in conf/httpd.conf) needs to name a group that actually exists in the /etc/group file (or - your system's equivalent). + your system's equivalent). This problem is also frequently seen when + a negative number is used in the Group directive + (e.g., "Group #-1"). Using a group name + -- not group number -- found in your system's group database should + solve this problem in all cases.