aboutsummaryrefslogtreecommitdiffstats
path: root/debug.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-09-12 05:37:22 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-09-12 05:37:22 +0000
commit4340dc126ba0920dc93c0e74d48cfee769547399 (patch)
treedfa02a8502b1be3dd801d0a2a1e872dfea99baac /debug.h
parent9e49a79d95a7c61099ab86b6106d98a77b66a79e (diff)
downloadlcd4linux-4340dc126ba0920dc93c0e74d48cfee769547399.tar.gz
[lcd4linux @ 2001-09-12 05:37:22 by reinelt]
fixed a bug in seti.c (file was never closed, lcd4linux run out of fd's improved socket debugging git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@147 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/debug.h b/debug.h
index 6db001b..9bc452f 100644
--- a/debug.h
+++ b/debug.h
@@ -1,4 +1,4 @@
-/* $Id: debug.h,v 1.3 2001/03/14 13:19:29 ltoetsch Exp $
+/* $Id: debug.h,v 1.4 2001/09/12 05:37:22 reinelt Exp $
*
* debug messages
*
@@ -20,6 +20,12 @@
*
*
* $Log: debug.h,v $
+ * Revision 1.4 2001/09/12 05:37:22 reinelt
+ *
+ * fixed a bug in seti.c (file was never closed, lcd4linux run out of fd's
+ *
+ * improved socket debugging
+ *
* Revision 1.3 2001/03/14 13:19:29 ltoetsch
* Added pop3/imap4 mail support
*
@@ -42,7 +48,6 @@
void message (int level, const char *format, ...);
-#define sockdebug(args...) message (3, args)
#define debug(args...) message (2, __FILE__ ": " args)
#define info(args...) message (1, args)
#define error(args...) message (0, args)