From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 735F81395E1 for ; Sun, 2 Aug 2015 14:12:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2984514022; Sun, 2 Aug 2015 14:12:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CC73F14022 for ; Sun, 2 Aug 2015 14:12:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B05A73406C2 for ; Sun, 2 Aug 2015 14:12:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7714B9 for ; Sun, 2 Aug 2015 14:12:18 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1438519198.f69833a1e17d1cf65e96a34fcc0e48caf9d90d64.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/mountinfo.c X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: f69833a1e17d1cf65e96a34fcc0e48caf9d90d64 X-VCS-Branch: master Date: Sun, 2 Aug 2015 14:12:18 +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-Archives-Salt: 0eb45551-1e90-465c-aa84-5f0bf76e6890 X-Archives-Hash: a6fff84b2e357609bcf27c70325f1c5e commit: f69833a1e17d1cf65e96a34fcc0e48caf9d90d64 Author: William Hubbs gmail com> AuthorDate: Sat Aug 1 20:08:31 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Aug 2 12:39:58 2015 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=f69833a1 mountinfo: fix -e and -E options Add the -e and -E options to getoptstring so they are recognized. src/rc/mountinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rc/mountinfo.c b/src/rc/mountinfo.c index 8790dfe..52e47f8 100644 --- a/src/rc/mountinfo.c +++ b/src/rc/mountinfo.c @@ -347,7 +347,7 @@ get_regex(const char *string) #include "_usage.h" #define extraopts "[mount1] [mount2] ..." -#define getoptstring "f:F:n:N:o:O:p:P:ist" getoptstring_COMMON +#define getoptstring "f:F:n:N:o:O:p:P:iste:E:" getoptstring_COMMON static const struct option longopts[] = { { "fstype-regex", 1, NULL, 'f'}, { "skip-fstype-regex", 1, NULL, 'F'},