diff options
author | Bernhard Reutner-Fischer | 2006-05-26 14:41:40 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2006-05-26 14:41:40 +0000 |
commit | 781e42d66c120183e4dea1058dc539bdc4c53651 (patch) | |
tree | b139320b4b1275de767168b811ca45d1523f0573 /loginutils/getty.c | |
parent | b180e5a76678f697b2a368e2ef607d299d06a3ae (diff) | |
download | busybox-781e42d66c120183e4dea1058dc539bdc4c53651.zip busybox-781e42d66c120183e4dea1058dc539bdc4c53651.tar.gz |
- introduce and use bb_path_wtmp_file for portability (saves 11 Bytes).
- fix last.c to also look at the double-underscore UT_ defines.
Diffstat (limited to 'loginutils/getty.c')
-rw-r--r-- | loginutils/getty.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/loginutils/getty.c b/loginutils/getty.c index 24d579f..43a82df 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c @@ -496,9 +496,9 @@ static void update_utmp(char *line) endutent(); #ifdef CONFIG_FEATURE_WTMP - if (access(_PATH_WTMP, R_OK|W_OK) == -1) - close(creat(_PATH_WTMP, 0664)); - updwtmp(_PATH_WTMP, &ut); + if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) + close(creat(bb_path_wtmp_file, 0664)); + updwtmp(bb_path_wtmp_file, &ut); #endif } |