summaryrefslogtreecommitdiffstats
path: root/crypto/engine/eng_fat.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2002-01-22 02:06:33 +0000
committerDr. Stephen Henson <steve@openssl.org>2002-01-22 02:06:33 +0000
commitf78d4a35f865d7678a8b8e7a496e72a19f3df014 (patch)
treea65569230a864f6ce9b1f7d3a0be9cd52bb67966 /crypto/engine/eng_fat.c
parentdf5eaa8a5297d42d1b44cfcf1210e7b016d3f7c1 (diff)
Constification.
Diffstat (limited to 'crypto/engine/eng_fat.c')
-rw-r--r--crypto/engine/eng_fat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/engine/eng_fat.c b/crypto/engine/eng_fat.c
index e101530ab1..d49aa7ed40 100644
--- a/crypto/engine/eng_fat.c
+++ b/crypto/engine/eng_fat.c
@@ -84,7 +84,7 @@ int ENGINE_set_default(ENGINE *e, unsigned int flags)
/* Set default algorithms using a string */
-int int_def_cb(char *alg, int len, void *arg)
+int int_def_cb(const char *alg, int len, void *arg)
{
unsigned int *pflags = arg;
if (!strncmp(alg, "ALL", len))
@@ -107,7 +107,7 @@ int int_def_cb(char *alg, int len, void *arg)
}
-int ENGINE_set_default_string(ENGINE *e, char *list)
+int ENGINE_set_default_string(ENGINE *e, const char *list)
{
unsigned int flags = 0;
if (!CONF_parse_list(list, ',', 1, int_def_cb, &flags))