From: mike Date: Fri, 31 Jan 2003 17:20:02 +0000 (+0000) Subject: lppasswd needs group write permission to the /etc/cups directory. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=07daee9e2c549df197117ad898be4e5183fead5e;p=thirdparty%2Fcups.git lppasswd needs group write permission to the /etc/cups directory. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@3293 7a7537e8-13f0-0310-91df-b6672ffda945 --- diff --git a/scheduler/conf.c b/scheduler/conf.c index a0b382ff09..cbbd43c535 100644 --- a/scheduler/conf.c +++ b/scheduler/conf.c @@ -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 $". */