summaryrefslogtreecommitdiffstats
path: root/apps/engine.c
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-04-07 22:48:33 +0000
committerNils Larsch <nils@openssl.org>2005-04-07 22:48:33 +0000
commiteb3eab20a86e3d06e949880e2a036a026dd1da91 (patch)
tree1471266584047b4be37365b5f8bbd93ac3205d7b /apps/engine.c
parent4848cbf1cffcd00565c4191319030bef52cc9b55 (diff)
const fixes
Diffstat (limited to 'apps/engine.c')
-rw-r--r--apps/engine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/engine.c b/apps/engine.c
index f1585bb738..8f7b389f40 100644
--- a/apps/engine.c
+++ b/apps/engine.c
@@ -344,7 +344,7 @@ int MAIN(int, char **);
int MAIN(int argc, char **argv)
{
int ret=1,i;
- char **pp;
+ const char **pp;
int verbose=0, list_cap=0, test_avail=0, test_avail_noise = 0;
ENGINE *e;
STACK *engines = sk_new_null();