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 5C28613997D for ; Sun, 10 Nov 2019 10:34:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20AAEE0B9D; Sun, 10 Nov 2019 10:30:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A4E23E0BAF for ; Sun, 10 Nov 2019 10:30:29 +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 9D96234CBB8 for ; Sat, 9 Nov 2019 18:19:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D65EA8A7 for ; Sat, 9 Nov 2019 18:19:56 +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: <1573323571.2940cf3de445e0614c6ab4305a459c1d4d7e8ba2.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:elfix-0.9.x 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: 2940cf3de445e0614c6ab4305a459c1d4d7e8ba2 X-VCS-Branch: elfix-0.9.x Date: Sat, 9 Nov 2019 18:19:56 +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: 56418e59-0d16-409e-af4f-2a030b537714 X-Archives-Hash: bd848b0d9d92ffcb0bd2ac0cda9f1fa3 commit: 2940cf3de445e0614c6ab4305a459c1d4d7e8ba2 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Nov 9 18:19:31 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Nov 9 18:19:31 2019 +0000 URL: https://gitweb.gentoo.org/proj/elfix.git/commit/?id=2940cf3d install-xattr: correct -b flag 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 ab3d041..cc52b2c 100644 --- a/misc/install-xattr/install-xattr.c +++ b/misc/install-xattr/install-xattr.c @@ -279,13 +279,13 @@ main(int argc, char* argv[]) { "owner", required_argument, 0, 'o'}, { "suffix", required_argument, 0, 'S'}, { "context", optional_argument, 0, 0 }, - { "backup", optional_argument, 0, 'b'}, + { "backup", optional_argument, 0, 0 }, { "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:Zb", long_options, &option_index); if (c == -1)