diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-12 09:25:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-12 09:25:42 +0000 |
commit | 688e7bfe2b069ade0353cc41ba1582d12d897714 (patch) | |
tree | 646cd61ff87e0563196577388056c7535a82a3f5 | |
parent | 57f97cff022aaee33c1f34288d4ac177b889427b (diff) | |
download | glibc-688e7bfe2b069ade0353cc41ba1582d12d897714.tar.gz glibc-688e7bfe2b069ade0353cc41ba1582d12d897714.tar.xz glibc-688e7bfe2b069ade0353cc41ba1582d12d897714.zip |
Update.
2002-12-11 Jakub Jelinek <jakub@redhat.com> * io/test-utime (main): If stnow.st[am]time is wrong, print it and not st.st[am]time.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | io/test-utime.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index 289530a991..98074874a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-12-11 Jakub Jelinek <jakub@redhat.com> + + * io/test-utime (main): If stnow.st[am]time is wrong, print it and + not st.st[am]time. + 2002-04-30 Bruno Haible <bruno@clisp.org> * intl/loadmsgcat.c (_nl_init_domain_conv): Don't append //TRANSLIT to diff --git a/io/test-utime.c b/io/test-utime.c index b652772b91..8e44fa0865 100644 --- a/io/test-utime.c +++ b/io/test-utime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994, 1996, 1997, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1994, 1996, 1997, 2000, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -114,13 +114,13 @@ main (int argc, char *argv[]) if (stnow.st_mtime < now1 || stnow.st_mtime > now2) { - printf ("modtime %ld <%ld >%ld\n", st.st_mtime, now1, now2); + printf ("modtime %ld <%ld >%ld\n", stnow.st_mtime, now1, now2); return 1; } if (stnow.st_atime < now1 || stnow.st_atime > now2) { - printf ("actime %ld <%ld >%ld\n", st.st_atime, now1, now2); + printf ("actime %ld <%ld >%ld\n", stnow.st_atime, now1, now2); return 1; } |