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: 866878 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-89735-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="XYnHVW8i"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3zTzy847Vvz9sCZ for ; Mon, 29 Jan 2018 04:23:44 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references; q=dns; s=default; b=ZSIKleKF+wvC3XJRxSSjXaF8MEhvb4Q aFVLZIWqhjtBEyYpKorRZlJah81Lh7wQDVwPEAGxHKpC9+R5XYeADQScFh2upkd6 mq7KtjOl0rJryDmtNvVtGQa4Srhfj9uSBHYqiMH2RpFegjI4FdM0QRSoHY7SWdZr zydQLAnTQ3cI= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references; s=default; bh=8qIgihhhGG3lWVZt0bmYuv9SUqs=; b=XYnHV W8i7PCfQHYL/trMn61/04qXrjNf2xV3VK8mIBR+DFUbzhPmSRoD1mtbjk1dhC/U5 2bgWOlprH8tJ4w9g1wn97gbdUOa7uneoILb71VRxXFwwGwGWMAbBZjcV+H2uX5f/ w1HL6UYWu8+/oVIJu71oZFc0wOMNVl+WQwoPqU= 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 {