diff options
author | 2014-12-28 16:51:31 +0000 | |
---|---|---|
committer | 2014-12-28 16:51:31 +0000 | |
commit | 179b5346226ba97f13a53080966e9d31616a70d8 (patch) | |
tree | 621ee0ff00b42bbfbb2b0648490f367c0c2f6989 | |
parent | Add regress tests for default option handling. (diff) | |
download | wireguard-openbsd-179b5346226ba97f13a53080966e9d31616a70d8.tar.xz wireguard-openbsd-179b5346226ba97f13a53080966e9d31616a70d8.zip |
Fix subtle typo.
-rw-r--r-- | usr.bin/openssl/apps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/openssl/apps.c b/usr.bin/openssl/apps.c index 1a52e7681b8..d3c31947f35 100644 --- a/usr.bin/openssl/apps.c +++ b/usr.bin/openssl/apps.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apps.c,v 1.21 2014/12/28 16:33:34 jsing Exp $ */ +/* $OpenBSD: apps.c,v 1.22 2014/12/28 16:51:31 jsing Exp $ */ /* * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> * @@ -2292,7 +2292,7 @@ options_parse(int argc, char **argv, struct option *opts, char **unnamed, break; } opt = &opts[j]; - if (opts->name == NULL && opts->type == 0) + if (opt->name == NULL && opt->type == 0) goto unknown; if (opt->type == OPTION_ARG || |