summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/log.c
diff options
context:
space:
mode:
authorEvangelos Foutras <evangelos@foutrelis.com>2014-12-22 18:19:38 +0100
committerAllan McRae <allan@archlinux.org>2014-12-24 02:15:25 +0100
commitc07593c64ce616c768061348865ead2a13248b0f (patch)
tree7fe0e7d64445568e6e5bc964d1efd31711624ae2 /lib/libalpm/log.c
parenta1c50a08c9307cd21947269bd8382add1acf2515 (diff)
downloadpacman-c07593c64ce616c768061348865ead2a13248b0f.tar.gz
pacman-c07593c64ce616c768061348865ead2a13248b0f.tar.xz
Use correct mode bits for the log file (0000 -> 0644)
Following commit 086bbc5 (Use O_CLOEXEC as much as possible when opening files), the log file would be created by pacman with blank permissions. Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/log.c')
-rw-r--r--lib/libalpm/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/log.c b/lib/libalpm/log.c
index d232bcc3..9af5e846 100644
--- a/lib/libalpm/log.c
+++ b/lib/libalpm/log.c
@@ -52,7 +52,7 @@ int SYMEXPORT alpm_logaction(alpm_handle_t *handle, const char *prefix,
int fd;
do {
fd = open(handle->logfile, O_WRONLY | O_APPEND | O_CREAT | O_CLOEXEC,
- 0000);
+ 0644);
} while(fd == -1 && errno == EINTR);
if(fd >= 0) {
handle->logstream = fdopen(fd, "a");