From: André Malo Date: Wed, 12 Feb 2003 13:19:40 +0000 (+0000) Subject: always assume suexec-umask to be an octal value by prepending a "0". X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de00550b615d5f0381cb2ecc6f6aacca061a581b;p=thirdparty%2Fapache%2Fhttpd.git always assume suexec-umask to be an octal value by prepending a "0". PR: 16984 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@98617 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure b/configure index 2d6e0001c7b..accf134b30b 100755 --- a/configure +++ b/configure @@ -1000,7 +1000,7 @@ do ;; --suexec-umask=*) suexec_umask_val="$apc_optarg" - suexec_umask="-DSUEXEC_UMASK=$apc_optarg" + suexec_umask="-DSUEXEC_UMASK=0$apc_optarg" suexec_ok=1 ;; --server-uid=*) diff --git a/src/CHANGES b/src/CHANGES index 3ea04647ee3..ddca742befb 100644 --- a/src/CHANGES +++ b/src/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 1.3.28 + *) In configure always assume suexec-umask to be an octal value by + prepending a "0". PR 16984. [André Malo] + *) Fix typo in suexec -V output. PR 9034. [Youichirou Koga ]