aboutsummaryrefslogtreecommitdiff
path: root/telnet.c
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2000-07-28 19:38:27 +0000
committerPavel Roskin <proski@gnu.org>2000-07-28 19:38:27 +0000
commit616d13bcd1a431eb21d1d3e48b17be6c26443c1d (patch)
treebc2a919eebf8f99bcce3c2d07d6e5a74393d4ce8 /telnet.c
parent259972e5657847313077dfd2ab8e84f065a82811 (diff)
downloadbusybox-616d13bcd1a431eb21d1d3e48b17be6c26443c1d.tar.gz
Fixed to pass -Wundef
Diffstat (limited to 'telnet.c')
-rw-r--r--telnet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/telnet.c b/telnet.c
index 3e43c4a1b..40cf7a128 100644
--- a/telnet.c
+++ b/telnet.c
@@ -49,7 +49,7 @@
#define DOTRACE 1
#endif
-#if DOTRACE
+#ifdef DOTRACE
#include <arpa/inet.h> /* for inet_ntoa()... */
#define TRACE(x, y) do { if (x) printf y; } while (0)
#else