diff options
| author | Eric Andersen <andersen@codepoet.org> | 2006-01-30 22:48:39 +0000 |
|---|---|---|
| committer | Eric Andersen <andersen@codepoet.org> | 2006-01-30 22:48:39 +0000 |
| commit | a68ea1cb93c29125bc4f30ddd415fca02249e010 (patch) | |
| tree | 5741be315758b807145c24da9ff3a1dbf8fce4e8 /loginutils | |
| parent | 9a58b02ec75caafb7214f1ad0317f9a4830cbd2a (diff) | |
| download | busybox-a68ea1cb93c29125bc4f30ddd415fca02249e010.tar.gz | |
fix up yet more annoying signed/unsigned and mixed type errors
Diffstat (limited to 'loginutils')
| -rw-r--r-- | loginutils/login.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loginutils/login.c b/loginutils/login.c index b2f3166e2..4d513dcb2 100644 --- a/loginutils/login.c +++ b/loginutils/login.c @@ -450,7 +450,7 @@ static void checkutmp(int picky) /* XXX - assumes /dev/tty?? */ strncpy(utent.ut_id, utent.ut_line + 3, sizeof utent.ut_id); strncpy(utent.ut_user, "LOGIN", sizeof utent.ut_user); - time(&utent.ut_time); + time((time_t*)&utent.ut_time); } } @@ -465,7 +465,7 @@ static void setutmp(const char *name, const char *line) { utent.ut_type = USER_PROCESS; strncpy(utent.ut_user, name, sizeof utent.ut_user); - time(&utent.ut_time); + time((time_t*)&utent.ut_time); /* other fields already filled in by checkutmp above */ setutent(); pututline(&utent); |
