Remove debugging output that wasn't supposed to be committed in the first place.

This commit is contained in:
Richard Levitte 2003-06-11 18:46:22 +00:00
parent c2edb62beb
commit b9c2b03352

View file

@ -497,8 +497,6 @@ static int buffer_gets(BIO *b, char *buf, int size)
{
BIO_copy_next_retry(b);
*buf='\0';
fprintf(stderr, "DEBUG[buffer_gets]: i = %d\n",
i);
if (i < 0) return((num > 0)?num:i);
if (i == 0) return(num);
}