diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-09-29 21:08:09 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-09-29 21:08:09 +0000 |
commit | c29aa5a4662a1593dc9967abeed38c0456e20360 (patch) | |
tree | 5c9fdbc378d3e8f7bc7750583677d67bbcd3664a | |
parent | 087a6180190c5d1c597d06f763297716179d9574 (diff) |
Fix a stupid typo...
-rw-r--r-- | libutil/logwtmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libutil/logwtmp.c b/libutil/logwtmp.c index d8ee3da05..6a8f6bd14 100644 --- a/libutil/logwtmp.c +++ b/libutil/logwtmp.c @@ -47,7 +47,7 @@ void logwtmp (const char *line, const char *name, const char *host) #endif #if _HAVE_UT_TV - 0 - __gettimeofday (&ut.ut_tv, NULL); + gettimeofday (&ut.ut_tv, NULL); #else time (&ut.ut_time); #endif |