1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-04 07:43:58 +02:00

mktime fix to avoid a diagnostic.

This commit is contained in:
Paul Eggert
2005-06-22 19:08:21 +00:00
parent 8834b57877
commit a13627ac2e
+7
View File
@@ -1,5 +1,12 @@
2005-06-22 Paul Eggert <eggert@cs.ucla.edu>
* mktime.c: Include <string.h> even if !DEBUG. (From glibc.)
(ranged_convert): Don't save conversion in a temporary struct.
This causes a warning with GCC 4.0.0, and anyway in the typical
case it's not worth the extra 100 bytes or so of code.
(ranged_convert, __mktime_internal): When calling a function via a
pointer P, use P () rather than (*P) (), as we now assume C89 or better.
* readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
"who -r" failed to give output. Problem reported by Tim Waugh.