Commit 4b12a17f authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix warning in ssl2_enc



Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
(cherry picked from commit f9ea4deb)
parent 2e524475
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;