about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2012-06-15 12:05:26 -0700
committerRichard Henderson <rth@twiddle.net>2012-06-15 12:05:26 -0700
commitef4239ed09dd9f242de9d02f8629f1248b8e0bfa (patch)
tree0c881196e94275d5af9a09d1949425b75c1a9a25
parent53c2cb7641bd866398156625ef672bbd2d78a0d8 (diff)
downloadglibc-ef4239ed09dd9f242de9d02f8629f1248b8e0bfa.tar.gz
glibc-ef4239ed09dd9f242de9d02f8629f1248b8e0bfa.tar.xz
glibc-ef4239ed09dd9f242de9d02f8629f1248b8e0bfa.zip
alpha: Fix protection on UTIME_NOW
-rw-r--r--sysdeps/unix/sysv/linux/alpha/bits/stat.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/stat.h b/sysdeps/unix/sysv/linux/alpha/bits/stat.h
index a958916469..68e5989aa2 100644
--- a/sysdeps/unix/sysv/linux/alpha/bits/stat.h
+++ b/sysdeps/unix/sysv/linux/alpha/bits/stat.h
@@ -1,5 +1,4 @@
-/* Copyright (C) 1996,1997,1998,1999,2000,2001,2004,2010,2012
-   Free Software Foundation, Inc.
+/* Copyright (C) 1996-2012 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
@@ -153,8 +152,7 @@ struct stat64
 #define	__S_IWRITE	0200	/* Write by owner.  */
 #define	__S_IEXEC	0100	/* Execute by owner.  */
 
-#if defined __USE_ATFILE || defined __USE_GNU
-/* XXX This will change to the macro for the next 2008 POSIX revision.  */
+#ifdef __USE_ATFILE
 # define UTIME_NOW	((1l << 30) - 1l)
 # define UTIME_OMIT	((1l << 30) - 2l)
 #endif