From: Karel Zak Date: Fri, 18 Apr 2014 11:12:13 +0000 (+0200) Subject: unshare: add + to getopt_long() X-Git-Tag: v2.25-rc1~263 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a9a4af90306c64e6b30f32189b7c719025fb797f;p=thirdparty%2Futil-linux.git unshare: add + to getopt_long() Signed-off-by: Karel Zak --- diff --git a/sys-utils/unshare.c b/sys-utils/unshare.c index 1240293c05..95e4afbd05 100644 --- a/sys-utils/unshare.c +++ b/sys-utils/unshare.c @@ -113,7 +113,7 @@ int main(int argc, char *argv[]) textdomain(PACKAGE); atexit(close_stdout); - while ((c = getopt_long(argc, argv, "fhVmuinpUr", longopts, NULL)) != -1) { + while ((c = getopt_long(argc, argv, "+fhVmuinpUr", longopts, NULL)) != -1) { switch (c) { case 'f': forkit = 1;