There are a number of instances throughout the code where the constant 28 is
[openssl.git] / crypto / bio / bf_nbio.c
index 1ce2bfacc06018f1657a98816d23fb468ea0cdc4..028616c06481c4f1049cb147c80eea919bb4d201 100644 (file)
@@ -125,19 +125,17 @@ static int nbiof_free(BIO *a)
        
 static int nbiof_read(BIO *b, char *out, int outl)
        {
-       NBIO_TEST *nt;
        int ret=0;
-#if 0
+#if 1
        int num;
        unsigned char n;
 #endif
 
        if (out == NULL) return(0);
        if (b->next_bio == NULL) return(0);
-       nt=(NBIO_TEST *)b->ptr;
 
        BIO_clear_retry_flags(b);
-#if 0
+#if 1
        RAND_pseudo_bytes(&n,1);
        num=(n&0x07);