From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7C73B13997D for ; Sun, 10 Nov 2019 10:35:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE8CCE0AF6; Sun, 10 Nov 2019 10:30:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EAC44E0B3B for ; Sun, 10 Nov 2019 10:30:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2990F34CB7F for ; Sat, 9 Nov 2019 18:24:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A97ED8A6 for ; Sat, 9 Nov 2019 18:24:09 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1573323830.1715286f9665488334e6c7e5154523648f383d61.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: misc/install-xattr/ X-VCS-Repository: proj/elfix X-VCS-Files: misc/install-xattr/install-xattr.c X-VCS-Directories: misc/install-xattr/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 1715286f9665488334e6c7e5154523648f383d61 X-VCS-Branch: master Date: Sat, 9 Nov 2019 18:24:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 826a700e-7552-4ea1-9668-45330a5632de X-Archives-Hash: b1ef574ef7fce513f70a4664f6055103 commit: 1715286f9665488334e6c7e5154523648f383d61 Author: Raimonds Cicans apollo lv> AuthorDate: Sat Nov 9 18:16:11 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Nov 9 18:23:50 2019 +0000 URL: https://gitweb.gentoo.org/proj/elfix.git/commit/?id=1715286f install-xattr: correct -Z flag, bug #699550 Signed-off-by: Anthony G. Basile gentoo.org> misc/install-xattr/install-xattr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/install-xattr/install-xattr.c b/misc/install-xattr/install-xattr.c index 5c8a978..ab3d041 100644 --- a/misc/install-xattr/install-xattr.c +++ b/misc/install-xattr/install-xattr.c @@ -278,14 +278,14 @@ main(int argc, char* argv[]) { "mode", required_argument, 0, 'm'}, { "owner", required_argument, 0, 'o'}, { "suffix", required_argument, 0, 'S'}, - { "context", optional_argument, 0, 'Z'}, + { "context", optional_argument, 0, 0 }, { "backup", optional_argument, 0, 'b'}, { "help", no_argument, 0, 0 }, { 0, 0, 0, 0 } }; int option_index; - int c = getopt_long(argc, argv, "dt:g:m:o:S:Z:", long_options, &option_index); + int c = getopt_long(argc, argv, "dt:g:m:o:S:Z", long_options, &option_index); if (c == -1)