From: jsing Date: Sun, 28 Dec 2014 16:51:31 +0000 (+0000) Subject: Fix subtle typo. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=179b5346226ba97f13a53080966e9d31616a70d8;p=openbsd Fix subtle typo. --- 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 * @@ -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 ||