Skip to content

Commit

Permalink
Parse the -u option via getopt
Browse files Browse the repository at this point in the history
  • Loading branch information
nak3 committed Aug 10, 2024
1 parent e4f0a27 commit fc3ccb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fc3ccb4

Please sign in to comment.