diff options
Diffstat (limited to 'io/test-utime.c')
-rw-r--r-- | io/test-utime.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |