diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-03-13 14:07:50 +0100 |
---|---|---|
committer | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-10-14 18:25:50 +0200 |
commit | 44c83ebd7089825a82545c9cacc4c4e2de81d001 (patch) | |
tree | eae27fae044aedfa92aa31b114836f3b197de850 /apps/srp.c | |
parent | 83bd048e9dbe5f376b2feaa7f0a6db6d98ef3a47 (diff) | |
download | openssl-new-44c83ebd7089825a82545c9cacc4c4e2de81d001.tar.gz |
Constify command options
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1694)
Diffstat (limited to 'apps/srp.c')
-rw-r--r-- | apps/srp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/srp.c b/apps/srp.c index 69175ebc58..643352e75d 100644 --- a/apps/srp.c +++ b/apps/srp.c @@ -186,7 +186,7 @@ typedef enum OPTION_choice { OPT_PASSIN, OPT_PASSOUT, OPT_ENGINE } OPTION_CHOICE; -OPTIONS srp_options[] = { +const OPTIONS srp_options[] = { {"help", OPT_HELP, '-', "Display this summary"}, {"verbose", OPT_VERBOSE, '-', "Talk a lot while doing things"}, {"config", OPT_CONFIG, '<', "A config file"}, |