From ce4ed21fcbb9bf84c8504ffe7e5c1bc42972a35e Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 15 Jan 2020 12:00:28 +0100 Subject: [PATCH] scepclient: Add missing short options (-i, -T) --- src/scepclient/scepclient.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scepclient/scepclient.c b/src/scepclient/scepclient.c index 754393455..bf526e5f2 100644 --- a/src/scepclient/scepclient.c +++ b/src/scepclient/scepclient.c @@ -547,7 +547,7 @@ int main(int argc, char **argv) }; /* parse next option */ - int c = getopt_long(argc, argv, "hv+:qi:o:fk:d:s:p:a:u:c:m:t:x:APRCMS", long_opts, NULL); + int c = getopt_long(argc, argv, "hv+:ql:i:o:fT:k:d:s:p:a:u:c:m:t:x:APRCMS", long_opts, NULL); switch (c) {