From: Eric Andersen Date: Thu, 26 Aug 2004 22:26:26 +0000 (-0000) Subject: Save a line or two X-Git-Tag: android-x86-2.2~6252 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=713d6e3dd3473e72fe72d42f3f7b8c07b5ed2616;p=android-x86%2Fexternal-busybox.git Save a line or two --- diff --git a/loginutils/getty.c b/loginutils/getty.c index 4d8aa9e31..923432ba1 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c @@ -504,8 +504,7 @@ static void update_utmp(char *line) * entry in the utmp file. */ if (access(_PATH_UTMP, R_OK|W_OK) == -1) { - int fd = creat(_PATH_UTMP, 0664); - close(fd); + close(creat(_PATH_UTMP, 0664)); } utmpname(_PATH_UTMP); setutent(); @@ -536,8 +535,7 @@ static void update_utmp(char *line) { if (access(_PATH_WTMP, R_OK|W_OK) == -1) { - int fd = creat(_PATH_WTMP, 0664); - close(fd); + close(creat(_PATH_WTMP, 0664)); } updwtmp(_PATH_WTMP, &ut); } diff --git a/loginutils/login.c b/loginutils/login.c index 4786d117d..f3630f102 100644 --- a/loginutils/login.c +++ b/loginutils/login.c @@ -479,8 +479,7 @@ static void setutmp(const char *name, const char *line) pututline(&utent); endutent(); if (access(_PATH_WTMP, R_OK|W_OK) == -1) { - int fd = creat(_PATH_WTMP, 0664); - close(fd); + close(creat(_PATH_WTMP, 0664)); } updwtmp(_PATH_WTMP, &utent); }