]> git.eshelyaron.com Git - emacs.git/commitdiff
* movemail.c (main): Call umask on all systems.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 13 Mar 2013 00:54:47 +0000 (17:54 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 13 Mar 2013 00:54:47 +0000 (17:54 -0700)
This is OK since Emacs already assumes umask elsewhere.

lib-src/ChangeLog
lib-src/movemail.c

index 81876d8616510a7127fee0cd1b3a2d801b2b69d6..9900f385ce9452886cd82cf732ee51b85a5960f3 100644 (file)
@@ -1,3 +1,8 @@
+2013-03-13  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * movemail.c (main): Call umask on all systems.
+       This is OK since Emacs already assumes umask elsewhere.
+
 2013-02-08  Paul Eggert  <eggert@cs.ucla.edu>
 
        * movemail.c (getenv): Remove decl (unused since 1994).
index cf93fb78d981f2e31528d96303000cf646a6befd..386e28de7111031531e6c9347852e1805b2c7f36 100644 (file)
@@ -380,13 +380,9 @@ main (int argc, char **argv)
       if (indesc < 0)
        pfatal_with_name (inname);
 
-#ifdef BSD_SYSTEM
       /* In case movemail is setuid to root, make sure the user can
         read the output file.  */
-      /* This is desirable for all systems
-        but I don't want to assume all have the umask system call */
       umask (umask (0) & 0333);
-#endif /* BSD_SYSTEM */
       outdesc = open (outname, O_WRONLY | O_CREAT | O_EXCL, 0666);
       if (outdesc < 0)
        pfatal_with_name (outname);