summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-07-21 22:07:35 +0000
committerBodo Möller <bodo@openssl.org>1999-07-21 22:07:35 +0000
commit93c106c4b9f3964bd04d8a7364d81b5354d0be1c (patch)
tree2432ee930186f8b23f5b1f5d3dded9253fa6493a /apps
parent74678cc2f8132ad34f7c33731c4765cf3083de8c (diff)
additional argument for key_callback
Diffstat (limited to 'apps')
-rw-r--r--apps/ca.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 26b86dec4f..d387c46ab6 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -173,7 +173,7 @@ extern int EF_ALIGNMENT;
static int add_oid_section(LHASH *conf);
static void lookup_fail(char *name,char *tag);
-static int MS_CALLBACK key_callback(char *buf,int len,int verify);
+static int MS_CALLBACK key_callback(char *buf,int len,int verify,void *u);
static unsigned long index_serial_hash(char **a);
static int index_serial_cmp(char **a, char **b);
static unsigned long index_name_hash(char **a);
@@ -1214,7 +1214,7 @@ static void lookup_fail(char *name, char *tag)
BIO_printf(bio_err,"variable lookup failed for %s::%s\n",name,tag);
}
-static int MS_CALLBACK key_callback(char *buf, int len, int verify)
+static int MS_CALLBACK key_callback(char *buf, int len, int verify, void *u)
{
int i;