Blob Blame History Raw
--- putty-0.60/unix/uxmisc.c.orig	2007-01-20 08:13:57.000000000 -0600
+++ putty-0.60/unix/uxmisc.c	2007-04-30 11:26:17.000000000 -0500
@@ -143,7 +143,7 @@
 	int fd;
 	assert(mode[0] == 'w');	       /* is_private is meaningless for read */
 	fd = open(filename.path, O_WRONLY | O_CREAT | O_TRUNC,
-		      0700);
+		      0600);
 	if (fd < 0)
 	    return NULL;
 	return fdopen(fd, mode);