aboutsummaryrefslogtreecommitdiff
path: root/networking/telnet.c
diff options
context:
space:
mode:
author"Robert P. J. Day" <rpjday@mindspring.com>2006-07-01 14:59:54 +0000
committer"Robert P. J. Day" <rpjday@mindspring.com>2006-07-01 14:59:54 +0000
commitd35ef0f66643f2bc43bd7070df0356e0b064b755 (patch)
tree5aa3ba477deef2545a65b9cd33e316fcb0496044 /networking/telnet.c
parentedd9ca574327205933f23205d7051f613e46b23b (diff)
downloadbusybox-d35ef0f66643f2bc43bd7070df0356e0b064b755.tar.gz
More removal of "#if 0" content.
Diffstat (limited to 'networking/telnet.c')
-rw-r--r--networking/telnet.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/networking/telnet.c b/networking/telnet.c
index c835c7a45..59268c6de 100644
--- a/networking/telnet.c
+++ b/networking/telnet.c
@@ -34,10 +34,6 @@
#include <netinet/in.h>
#include "busybox.h"
-#if 0
-enum { DOTRACE = 1 };
-#endif
-
#ifdef DOTRACE
#include <arpa/inet.h> /* for inet_ntoa()... */
#define TRACE(x, y) do { if (x) printf y; } while (0)
@@ -311,17 +307,6 @@ static void putiac2(byte wwdd, byte c)
putiac(c);
}
-#if 0
-static void putiac1(byte c)
-{
- if (G.iaclen + 2 > IACBUFSIZE)
- iacflush();
-
- putiac(IAC);
- putiac(c);
-}
-#endif
-
#ifdef CONFIG_FEATURE_TELNET_TTYPE
static void putiac_subopt(byte c, char *str)
{