]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
lppasswd needs group write permission to the /etc/cups directory.
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Fri, 31 Jan 2003 17:20:02 +0000 (17:20 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Fri, 31 Jan 2003 17:20:02 +0000 (17:20 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@3293 7a7537e8-13f0-0310-91df-b6672ffda945

scheduler/conf.c

index a0b382ff09be461cebfb61bd78532a229b0bfc5b..cbbd43c5357e809b32b113cc83746815960e39f3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * "$Id: conf.c,v 1.119 2003/01/31 17:08:44 mike Exp $"
+ * "$Id: conf.c,v 1.120 2003/01/31 17:20:02 mike Exp $"
  *
  *   Configuration routines for the Common UNIX Printing System (CUPS).
  *
@@ -484,7 +484,7 @@ ReadConfiguration(void)
   */
 
   chown(ServerRoot, run_user, Group);
-  chmod(ServerRoot, 0755);
+  chmod(ServerRoot, 0775);
 
   snprintf(temp, sizeof(temp), "%s/certs", ServerRoot);
   chown(temp, run_user, Group);
@@ -2041,5 +2041,5 @@ CDSAGetServerCerts(void)
 
 
 /*
- * End of "$Id: conf.c,v 1.119 2003/01/31 17:08:44 mike Exp $".
+ * End of "$Id: conf.c,v 1.120 2003/01/31 17:20:02 mike Exp $".
  */