From c6ddacf7f8744bf28c10b9b089c66ac5e525cc56 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sat, 31 May 2008 19:28:57 +0000 Subject: Stop const mismatch warning. --- apps/ca.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/ca.c') diff --git a/apps/ca.c b/apps/ca.c index 45688a91cc..560a4d938f 100644 --- a/apps/ca.c +++ b/apps/ca.c @@ -2481,7 +2481,7 @@ static int do_revoke(X509 *x509, CA_DB *db, int type, char *value) goto err; } - else if (index_name_cmp(row,rrow)) + else if (index_name_cmp((const CSTRING *)row,(const CSTRING *)rrow)) { BIO_printf(bio_err,"ERROR:name does not match %s\n", row[DB_name]); -- cgit v1.2.3