summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-07-15 18:59:05 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-07-15 18:59:05 +0000
commite4a4d76981b42f1faaafbe720460eee17c24cfda (patch)
tree3e6d65204f1aa83b513b9f9c2cca36536849672a
parent5619d549cdb1feff11943e1ebdc4704f5890a13e (diff)
make that 0664 until we find out why umask is not being applied
-rw-r--r--lib/libc/gmon/gmon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gmon/gmon.c b/lib/libc/gmon/gmon.c
index 9579d65cf2f..850d5caa82f 100644
--- a/lib/libc/gmon/gmon.c
+++ b/lib/libc/gmon/gmon.c
@@ -32,7 +32,7 @@
*/
#if !defined(lint) && defined(LIBC_SCCS)
-static char rcsid[] = "$OpenBSD: gmon.c,v 1.10 1998/07/15 18:46:25 millert Exp $";
+static char rcsid[] = "$OpenBSD: gmon.c,v 1.11 1998/07/15 18:59:04 millert Exp $";
#endif
#include <sys/param.h>
@@ -212,7 +212,7 @@ _mcleanup()
proffile = "gmon.out";
}
- fd = open(proffile , O_CREAT|O_TRUNC|O_WRONLY, 0644);
+ fd = open(proffile , O_CREAT|O_TRUNC|O_WRONLY, 0664);
if (fd < 0) {
perror( proffile );
return;