diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-07-28 20:45:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-07-28 20:45:36 +0000 |
commit | cedb4109571cff4416235df260848de77f09f556 (patch) | |
tree | e170e2abca7478ed85d71a5efe34f861a112b90a /login/logwtmp.c | |
parent | 9d9febc7952c43f90fd81ce185e4b1a74cb13375 (diff) | |
download | glibc-cedb4109571cff4416235df260848de77f09f556.tar.gz glibc-cedb4109571cff4416235df260848de77f09f556.tar.xz glibc-cedb4109571cff4416235df260848de77f09f556.zip |
* locale/programs/ld-monetary.c (monetary_finish): Avoid range check
for int_frac_digits and frac_digits. * login/logout.c (logout): Avoid aliasing violation. * login/logwtmp.c (logwtmp): Likewise. * libio/genops.c (_IO_un_link): Avoid aliasing violation.
Diffstat (limited to 'login/logwtmp.c')
-rw-r--r-- | login/logwtmp.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/login/logwtmp.c b/login/logwtmp.c index 96ef05d795..ff2e7f9887 100644 --- a/login/logwtmp.c +++ b/login/logwtmp.c @@ -44,15 +44,10 @@ logwtmp (const char *line, const char *name, const char *host) #endif #if _HAVE_UT_TV - 0 - if (sizeof (ut.ut_tv) == sizeof (struct timeval)) - __gettimeofday ((struct timeval *) &ut.ut_tv, NULL); - else - { - struct timeval tv; - __gettimeofday (&tv, NULL); - ut.ut_tv.tv_sec = tv.tv_sec; - ut.ut_tv.tv_usec = tv.tv_usec; - } + struct timeval tv; + __gettimeofday (&tv, NULL); + ut.ut_tv.tv_sec = tv.tv_sec; + ut.ut_tv.tv_usec = tv.tv_usec; #else ut.ut_time = time (NULL); #endif |