From patchwork Wed Jul 2 09:43:13 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 1849 Received: (qmail 28441 invoked by alias); 2 Jul 2014 09:41:48 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 28376 invoked by uid 89); 2 Jul 2014 09:41:42 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.5 required=5.0 tests=AWL, BAYES_00, SPF_HELO_PASS, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Date: Wed, 2 Jul 2014 15:13:13 +0530 From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Subject: [COMMITTED] Fix typo in sysconf.c Message-ID: <20140702094313.GG20796@spoyarek.pnq.redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.22.1-rc1 (2013-10-16) Hi, I've fixed the following typo as obvious. Siddhesh commit 256aa665963ebbc2893ed4519dde33e25d8f51c9 Author: Siddhesh Poyarekar Date: Wed Jul 2 15:09:39 2014 +0530 Fix typo in macro name It is _POSIX_SIGNALS and not _POSUX_SIGNALS diff --git a/ChangeLog b/ChangeLog index 986210c..56c35ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-07-02 Siddhesh Poyarekar + + * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name. + 2014-07-02 Will Newton * malloc/obstack.c: Merge from gnulib master. diff --git a/sysdeps/posix/sysconf.c b/sysdeps/posix/sysconf.c index 26136bd..e940099 100644 --- a/sysdeps/posix/sysconf.c +++ b/sysdeps/posix/sysconf.c @@ -998,7 +998,7 @@ __sysconf (name) #endif case _SC_SIGNALS: -#ifdef _POSUX_SIGNALS +#ifdef _POSIX_SIGNALS return _POSIX_SIGNALS; #else return -1;