diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-05-23 17:59:08 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-05-23 17:59:08 +0000 |
commit | 3f8b219210a53a59d8850f023d294bb92fbc9953 (patch) | |
tree | a20504551eb4276b98ae3327450459f46f862284 | |
parent | 03ffa590b7b2234d72ff587979d51a786810d3ed (diff) | |
download | tinyproxy-3f8b219210a53a59d8850f023d294bb92fbc9953.tar.gz tinyproxy-3f8b219210a53a59d8850f023d294bb92fbc9953.zip |
Removed a DEBUG line in the "can't happen" case.
Diffstat (limited to '')
-rw-r--r-- | src/stats.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stats.c b/src/stats.c index da7054e..f733fdd 100644 --- a/src/stats.c +++ b/src/stats.c @@ -1,4 +1,4 @@ -/* $Id: stats.c,v 1.2 2001-01-15 17:11:57 rjkaes Exp $ +/* $Id: stats.c,v 1.3 2001-05-23 17:59:08 rjkaes Exp $ * * This module handles the statistics for tinyproxy. There are only two * public API functions. The reason for the functions, rather than just a @@ -116,7 +116,6 @@ int update_stats(status_t update_level) stats.num_denied++; break; default: - DEBUG2("An invalid STATUS type (%d)", update_level); UNLOCK(); return -1; } |