aboutsummaryrefslogtreecommitdiff
path: root/networking/telnet.c
diff options
context:
space:
mode:
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)
{