From fc3ccb49d59cb6880d8472348de57186bc72b831 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Sat, 10 Aug 2024 12:35:53 +0900 Subject: [PATCH] Parse the -u option via getopt --- t/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/cli.c b/t/cli.c index c1e3fac4..9f7f6562 100644 --- a/t/cli.c +++ b/t/cli.c @@ -456,7 +456,7 @@ int main(int argc, char **argv) int family = 0; const char *raw_pub_key_file = NULL, *cert_location = NULL; - while ((ch = getopt(argc, argv, "46abBC:c:i:Ij:k:nN:es:Sr:p:P:E:K:l:y:vV:h")) != -1) { + while ((ch = getopt(argc, argv, "46abBC:c:i:Ij:k:nN:es:Sr:p:P:E:K:l:uy:vV:h")) != -1) { switch (ch) { case '4': family = AF_INET;