aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-05 15:50:56 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-05 15:50:56 +0000
commitd0c41a851997c62c1ad24e76114f7007ff689d48 (patch)
tree7185ae64e76bbd96a1457588328ef3d53750ce6e /miscutils
parentf087480da192dcae6977bd373ca617abd2b3b200 (diff)
downloadbusybox-d0c41a851997c62c1ad24e76114f7007ff689d48.tar.gz
destroy bug [0000381]
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/crond.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c
index 257632f8f..eea34b963 100644
--- a/miscutils/crond.c
+++ b/miscutils/crond.c
@@ -132,7 +132,7 @@ static void crondlog(const char *ctl, ...)
if (LogFile == 0) {
vsyslog(type, fmt, va);
} else {
- int logfd = open(LogFile, O_WRONLY | O_CREAT | O_APPEND, 600);
+ int logfd = open(LogFile, O_WRONLY | O_CREAT | O_APPEND, 0600);
if (logfd >= 0) {
vdprintf(logfd, fmt, va);
close(logfd);
@@ -348,7 +348,7 @@ static void startlogger(void)
else { /* test logfile */
int logfd;
- if ((logfd = open(LogFile, O_WRONLY | O_CREAT | O_APPEND, 600)) >= 0) {
+ if ((logfd = open(LogFile, O_WRONLY | O_CREAT | O_APPEND, 0600)) >= 0) {
close(logfd);
} else {
bb_perror_msg("Failed to open log file '%s' reason", LogFile);