Damn---removed the debugging code from write_message().

This commit is contained in:
Robert James Kaes 2001-12-19 05:20:01 +00:00
parent 5140f01d5c
commit e964cf0d35

View File

@ -1,4 +1,4 @@
/* $Id: reqs.c,v 1.47 2001-12-19 05:19:03 rjkaes Exp $
/* $Id: reqs.c,v 1.48 2001-12-19 05:20:01 rjkaes Exp $
*
* This is where all the work in tinyproxy is actually done. Incoming
* connections have a new thread created for them. The thread then
@ -216,8 +216,6 @@ write_message(int fd, const char *fmt, ...)
n = vsnprintf(buf, size, fmt, ap);
va_end(ap);
DEBUG2("n = %d", n);
/* If that worked, break out so we can send the buffer */
if (n > -1 && n < size)
break;