[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r112026: * movemail.c (main): Call um
From: |
Paul Eggert |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r112026: * movemail.c (main): Call umask on all systems. |
Date: |
Tue, 12 Mar 2013 17:54:47 -0700 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 112026
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Tue 2013-03-12 17:54:47 -0700
message:
* movemail.c (main): Call umask on all systems.
This is OK since Emacs already assumes umask elsewhere.
modified:
lib-src/ChangeLog
lib-src/movemail.c
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2013-03-11 16:31:55 +0000
+++ b/lib-src/ChangeLog 2013-03-13 00:54:47 +0000
@@ -1,3 +1,8 @@
+2013-03-13 Paul Eggert <address@hidden>
+
+ * movemail.c (main): Call umask on all systems.
+ This is OK since Emacs already assumes umask elsewhere.
+
2013-02-08 Paul Eggert <address@hidden>
* movemail.c (getenv): Remove decl (unused since 1994).
=== modified file 'lib-src/movemail.c'
--- a/lib-src/movemail.c 2013-02-08 23:28:29 +0000
+++ b/lib-src/movemail.c 2013-03-13 00:54:47 +0000
@@ -380,13 +380,9 @@
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);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r112026: * movemail.c (main): Call umask on all systems.,
Paul Eggert <=