From db6c2118c4ee512b454f269f7df3e094569f9068 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sat, 9 Mar 2019 15:23:31 +0100 Subject: [PATCH] Add missing colon to optarg listing flag Signed-off-by: David Oberhollenzer --- main/cmd/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/cmd/install.c b/main/cmd/install.c index dc3911e..dd4944b 100644 --- a/main/cmd/install.c +++ b/main/cmd/install.c @@ -31,7 +31,7 @@ static const struct option long_opts[] = { { NULL, 0, NULL, 0 }, }; -static const char *short_opts = "r:omdR:plF:LD"; +static const char *short_opts = "r:omdR:pl:F:LD"; static int unpack_packages(int repofd, int rootfd, int flags, struct pkg_dep_list *list)