]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
always assume suexec-umask to be an octal value by prepending a "0".
authorAndré Malo <nd@apache.org>
Wed, 12 Feb 2003 13:19:40 +0000 (13:19 +0000)
committerAndré Malo <nd@apache.org>
Wed, 12 Feb 2003 13:19:40 +0000 (13:19 +0000)
PR: 16984

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

configure
src/CHANGES

index 2d6e0001c7b196848e2e2ba49042d5cae133754c..accf134b30bf16f3edcfa48b45a81873ba48f0a2 100755 (executable)
--- 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=*)
index 3ea04647ee3cd57c1f80a400a4141cc210c9b868..ddca742befb67882c8d70b03f3f2dfad016f310a 100644 (file)
@@ -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 <y-koga@apache.or.jp>]