diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-12-19 05:20:01 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-12-19 05:20:01 +0000 |
commit | e964cf0d3515b68c082ee43772ba936fd114a9a4 (patch) | |
tree | 5e65d1f913ca5a286be96197aac3f886b18bebe9 /src | |
parent | 5140f01d5c7e936855f61d7447af9c4016b10587 (diff) | |
download | tinyproxy-e964cf0d3515b68c082ee43772ba936fd114a9a4.tar.gz tinyproxy-e964cf0d3515b68c082ee43772ba936fd114a9a4.zip |
Damn---removed the debugging code from write_message().
Diffstat (limited to 'src')
-rw-r--r-- | src/reqs.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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; |