aboutsummaryrefslogtreecommitdiff
path: root/loginutils/login.c
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-26 14:41:40 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-26 14:41:40 +0000
commit8f46d0577c15ca274963736a0791c06747e31c0d (patch)
treeb139320b4b1275de767168b811ca45d1523f0573 /loginutils/login.c
parent73d6f297805faa5ab01168d0d29a723010e96730 (diff)
downloadbusybox-w32-8f46d0577c15ca274963736a0791c06747e31c0d.tar.gz
busybox-w32-8f46d0577c15ca274963736a0791c06747e31c0d.tar.bz2
busybox-w32-8f46d0577c15ca274963736a0791c06747e31c0d.zip
- introduce and use bb_path_wtmp_file for portability (saves 11 Bytes).
- fix last.c to also look at the double-underscore UT_ defines. git-svn-id: svn://busybox.net/trunk/busybox@15193 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'loginutils/login.c')
-rw-r--r--loginutils/login.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/loginutils/login.c b/loginutils/login.c
index 46766c551..b1367327b 100644
--- a/loginutils/login.c
+++ b/loginutils/login.c
@@ -463,7 +463,7 @@ static void checkutmp(int picky)
463static void setutmp(const char *name, const char *line ATTRIBUTE_UNUSED) 463static void setutmp(const char *name, const char *line ATTRIBUTE_UNUSED)
464{ 464{
465 time_t t_tmp = (time_t)utent.ut_time; 465 time_t t_tmp = (time_t)utent.ut_time;
466 466
467 utent.ut_type = USER_PROCESS; 467 utent.ut_type = USER_PROCESS;
468 strncpy(utent.ut_user, name, sizeof utent.ut_user); 468 strncpy(utent.ut_user, name, sizeof utent.ut_user);
469 time(&t_tmp); 469 time(&t_tmp);
@@ -472,10 +472,10 @@ static void setutmp(const char *name, const char *line ATTRIBUTE_UNUSED)
472 pututline(&utent); 472 pututline(&utent);
473 endutent(); 473 endutent();
474#ifdef CONFIG_FEATURE_WTMP 474#ifdef CONFIG_FEATURE_WTMP
475 if (access(_PATH_WTMP, R_OK|W_OK) == -1) { 475 if (access(bb_path_wtmp_file, R_OK|W_OK) == -1) {
476 close(creat(_PATH_WTMP, 0664)); 476 close(creat(bb_path_wtmp_file, 0664));
477 } 477 }
478 updwtmp(_PATH_WTMP, &utent); 478 updwtmp(bb_path_wtmp_file, &utent);
479#endif 479#endif
480} 480}
481#endif /* CONFIG_FEATURE_UTMP */ 481#endif /* CONFIG_FEATURE_UTMP */