From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8086 invoked by alias); 15 Jun 2012 19:21:15 -0000 Received: (qmail 8057 invoked by uid 22791); 15 Jun 2012 19:21:12 -0000 X-SWARE-Spam-Status: No, hits=-5.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,KHOP_RCVD_TRUST,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-pb0-f41.google.com (HELO mail-pb0-f41.google.com) (209.85.160.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 15 Jun 2012 19:20:46 +0000 Received: by pbbrp2 with SMTP id rp2so6186862pbb.0 for ; Fri, 15 Jun 2012 12:20:46 -0700 (PDT) Received: by 10.68.220.163 with SMTP id px3mr7623079pbc.167.1339788046323; Fri, 15 Jun 2012 12:20:46 -0700 (PDT) Received: from anchor.twiddle.home ([173.160.232.49]) by mx.google.com with ESMTPS id tm2sm14126864pbc.69.2012.06.15.12.20.45 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 15 Jun 2012 12:20:45 -0700 (PDT) From: Richard Henderson To: libc-ports@sourceware.org Subject: [PATCH 4/7] alpha: Fix protection on UTIME_NOW Date: Fri, 15 Jun 2012 19:21:00 -0000 Message-Id: <1339788037-29519-5-git-send-email-rth@twiddle.net> In-Reply-To: <1339788037-29519-1-git-send-email-rth@twiddle.net> References: <1339788037-29519-1-git-send-email-rth@twiddle.net> X-IsSubscribed: yes Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-06/txt/msg00059.txt.bz2 --- sysdeps/unix/sysv/linux/alpha/bits/stat.h | 6 ++---- 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 a958916..68e5989 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 -- 1.7.7.6