Commit c6ddacf7 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Stop const mismatch warning.

parent ab3eafd5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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]);