]> source.dussan.org Git - tigervnc.git/commitdiff
Remove incorrect umask change
authorPierre Ossman <ossman@cendio.se>
Mon, 7 Sep 2020 07:21:12 +0000 (09:21 +0200)
committerPierre Ossman <ossman@cendio.se>
Mon, 7 Sep 2020 07:21:12 +0000 (09:21 +0200)
Not sure why this got in there, but it is incorrect as it results in
creating files with too liberal permissions.

unix/vncserver/vncsession.c

index 06c07d48142b33ac77558f4130eff3d7fa050b81..3e0c98f0fb268745a15a3a4771a681cf6a7ca831 100644 (file)
@@ -117,9 +117,6 @@ begin_daemon(void)
     if (devnull > 2)
         close(devnull);
 
-    /* Full control of access bits */
-    umask(0);
-
     /* A safe working directory */
     if (chdir("/") < 0) {
         perror("chdir");