Commit f9ea4deb authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix warning in ssl2_enc

parent eceef8fb
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;