Fixed warning in ssl2_enc

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Matt Caswell 2014-11-27 20:40:18 +00:00
parent 5fc8bb6ab7
commit 2db95e094d

View File

@ -137,7 +137,7 @@ int ssl2_enc(SSL *s, int send)
}
/* check for NULL cipher */
if (ds == NULL) return;
if (ds == NULL) return 1;
bs=ds->cipher->block_size;