fix warning

This commit is contained in:
Dr. Stephen Henson 2012-01-15 13:30:41 +00:00
parent 5d13669a2c
commit 9bd20155ba

View File

@ -138,7 +138,7 @@ int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags, unsigned long cflag)
if (BIO_write(bp," Serial Number:",22) <= 0) goto err;
bs=X509_get_serialNumber(x);
if (bs->length <= sizeof(long))
if (bs->length <= (int)sizeof(long))
{
l=ASN1_INTEGER_get(bs);
if (bs->type == V_ASN1_NEG_INTEGER)