From patchwork Sun Jan 28 17:23:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 25644 Received: (qmail 127851 invoked by alias); 28 Jan 2018 17:23:16 -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 127660 invoked by uid 89); 28 Jan 2018 17:23:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_NEUTRAL autolearn=ham version=3.3.2 spammy=act X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault Subject: [hurd,commited 2/3] hurd: Fix building io/tst-fchownat.c Date: Sun, 28 Jan 2018 18:23:07 +0100 Message-Id: <20180128172308.7647-3-samuel.thibault@ens-lyon.org> In-Reply-To: <20180128172308.7647-1-samuel.thibault@ens-lyon.org> References: <20180128172308.7647-1-samuel.thibault@ens-lyon.org> * io/tst-fchownat.c [!defined _POSIX_CHOWN_RESTRICTED]: Act like when _POSIX_CHOWN_RESTRICTED is defined to 0. --- ChangeLog | 2 ++ io/tst-fchownat.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 23a56d69cd..23058435c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -56,6 +56,8 @@ * libio/tst-memstream3.c (FWRITE): Rename to _FWRITE. (do_test_bz20181): Rename accordingly. * libio/tst-wmemstream3.c (FWRITE): Rename accordingly. + * io/tst-fchownat.c [!defined _POSIX_CHOWN_RESTRICTED]: Act like when + _POSIX_CHOWN_RESTRICTED is defined to 0. 2008-12-18 Thomas Schwinge diff --git a/io/tst-fchownat.c b/io/tst-fchownat.c index e8adf6229f..8318842249 100644 --- a/io/tst-fchownat.c +++ b/io/tst-fchownat.c @@ -20,7 +20,7 @@ static int dir_fd; static void prepare (void) { -#if _POSIX_CHOWN_RESTRICTED == 0 +#if !defined _POSIX_CHOWN_RESTRICTED || _POSIX_CHOWN_RESTRICTED == 0 if (pathconf (test_dir, _PC_CHOWN_RESTRICTED) != 0) #endif {