diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2008-06-02 12:42:57 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2008-06-02 12:42:57 +0200 |
commit | 8ecfbedd850b94aeb616bbbc39f94c5a215d98e3 (patch) | |
tree | 8e22d29af90b68f71e0c574befe79fe5ad65d369 | |
parent | Avoid cast with wrapper function. (diff) | |
download | openssl-8ecfbedd850b94aeb616bbbc39f94c5a215d98e3.tar.xz openssl-8ecfbedd850b94aeb616bbbc39f94c5a215d98e3.zip |
Revert, doesn't fix warning :-(
-rw-r--r-- | apps/ca.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -2398,9 +2398,6 @@ static int check_time_format(const char *str) return(ASN1_UTCTIME_check(&tm)); } -static int index_name_cmp_nc(STRING *a, STRING *b) - { return index_name_cmp(a, b); } - static int do_revoke(X509 *x509, CA_DB *db, int type, char *value) { ASN1_UTCTIME *tm=NULL; @@ -2484,7 +2481,7 @@ static int do_revoke(X509 *x509, CA_DB *db, int type, char *value) goto err; } - else if (index_name_cmp_nc(row, rrow)) + else if (index_name_cmp((CSTRING *)row, (CSTRING *)rrow)) { BIO_printf(bio_err,"ERROR:name does not match %s\n", row[DB_name]); |