summaryrefslogtreecommitdiff
path: root/loginutils/getty.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-07-30 17:39:08 +0000
committerEric Andersen <andersen@codepoet.org>2004-07-30 17:39:08 +0000
commitb737b1a68bf8ab002bb314375ff33c651ee9cdaa (patch)
tree66a23af54b43ab5a8723c6fb732345fc283e5d4f /loginutils/getty.c
parentaad29b37a7345207c94e8ef9f0bac943d43dbe12 (diff)
downloadbusybox-w32-b737b1a68bf8ab002bb314375ff33c651ee9cdaa.tar.gz
busybox-w32-b737b1a68bf8ab002bb314375ff33c651ee9cdaa.tar.bz2
busybox-w32-b737b1a68bf8ab002bb314375ff33c651ee9cdaa.zip
Umm. Not guilty by reason of insanity.
-Erik
Diffstat (limited to 'loginutils/getty.c')
-rw-r--r--loginutils/getty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loginutils/getty.c b/loginutils/getty.c
index 2b37136fe..71cadc7ab 100644
--- a/loginutils/getty.c
+++ b/loginutils/getty.c
@@ -504,7 +504,7 @@ static void update_utmp(char *line)
504 * entry in the utmp file. 504 * entry in the utmp file.
505 */ 505 */
506 if (access(_PATH_UTMP, R_OK|W_OK) == -1) { 506 if (access(_PATH_UTMP, R_OK|W_OK) == -1) {
507 creat(_PATH_UTMP, O_RDWR); 507 creat(_PATH_UTMP, 0664);
508 } 508 }
509 utmpname(_PATH_UTMP); 509 utmpname(_PATH_UTMP);
510 setutent(); 510 setutent();
@@ -535,7 +535,7 @@ static void update_utmp(char *line)
535 535
536 { 536 {
537 if (access(_PATH_WTMP, R_OK|W_OK) == -1) { 537 if (access(_PATH_WTMP, R_OK|W_OK) == -1) {
538 creat(_PATH_WTMP, O_RDWR); 538 creat(_PATH_WTMP, 0664);
539 } 539 }
540 updwtmp(_PATH_WTMP, &ut); 540 updwtmp(_PATH_WTMP, &ut);
541 } 541 }