From: doogie <> Date: Thu, 16 Aug 2001 14:07:53 +0000 (-0800) Subject: [project @ 2001-08-16 07:07:53 by doogie] X-Git-Tag: release/2.6.0~1120 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=cda2943f03e4e6c436924ee45e8236199ca93fed;p=debbugs.git [project @ 2001-08-16 07:07:53 by doogie] Set the umask, so g+w works. --- diff --git a/scripts/process.in b/scripts/process.in index 8aff7c27..cdf30c5c 100755 --- a/scripts/process.in +++ b/scripts/process.in @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: process.in,v 1.33 2001/08/16 07:06:16 doogie Exp $ +# $Id: process.in,v 1.34 2001/08/16 07:07:53 doogie Exp $ # # Usage: process nn # Temps: incoming/Pnn @@ -10,6 +10,7 @@ require( '/usr/lib/debbugs/errorlib' ); chdir( "$gSpoolDir" ) || die 'chdir spool: $!\n'; #open(DEBUG,"> /tmp/debbugs.debug"); +umask(002); open DEBUG, ">/dev/null"; defined( $intdate= time ) || &quit( "failed to get time: $!" );