diff options
author | Nils Larsch <nils@openssl.org> | 2005-04-05 21:11:19 +0200 |
---|---|---|
committer | Nils Larsch <nils@openssl.org> | 2005-04-05 21:11:19 +0200 |
commit | 7d727231b735750c0876089204fe46c058e3f675 (patch) | |
tree | 298aa8583aa08f1f6d06cf6aac5cb394ba70e108 /apps/ciphers.c | |
parent | update progs.pl to reflect changes in progs.h (diff) | |
download | openssl-7d727231b735750c0876089204fe46c058e3f675.tar.xz openssl-7d727231b735750c0876089204fe46c058e3f675.zip |
some const fixes
Diffstat (limited to 'apps/ciphers.c')
-rw-r--r-- | apps/ciphers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/ciphers.c b/apps/ciphers.c index 7c62fc5dc3..43f0ac594a 100644 --- a/apps/ciphers.c +++ b/apps/ciphers.c @@ -69,7 +69,7 @@ #undef PROG #define PROG ciphers_main -static char *ciphers_usage[]={ +static const char *ciphers_usage[]={ "usage: ciphers args\n", " -v - verbose mode, a textual listing of the ciphers in SSLeay\n", " -ssl2 - SSL2 mode\n", @@ -84,7 +84,7 @@ int MAIN(int argc, char **argv) { int ret=1,i; int verbose=0; - char **pp; + const char **pp; const char *p; int badops=0; SSL_CTX *ctx=NULL; |