diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-22 23:22:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-22 23:22:06 +0000 |
commit | 48237b0c88343154d58854020c3a9c8b07c61b10 (patch) | |
tree | b36bc84f22dd797b45c8d665e50e2f6c690e1370 /networking/telnet.c | |
parent | b40bdb383a6b7a7f0fd36d0b1cc24deb42cd5f0d (diff) | |
download | busybox-w32-48237b0c88343154d58854020c3a9c8b07c61b10.tar.gz busybox-w32-48237b0c88343154d58854020c3a9c8b07c61b10.tar.bz2 busybox-w32-48237b0c88343154d58854020c3a9c8b07c61b10.zip |
introduce setsockopt_reuseaddr(int fd), setsockopt_broadcast(int fd),
use them where appropriate. 200 bytes saved
Diffstat (limited to 'networking/telnet.c')
-rw-r--r-- | networking/telnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/telnet.c b/networking/telnet.c index 628e2e6e3..6085d885a 100644 --- a/networking/telnet.c +++ b/networking/telnet.c | |||
@@ -103,7 +103,7 @@ static void telopt(byte c); | |||
103 | static int subneg(byte c); | 103 | static int subneg(byte c); |
104 | 104 | ||
105 | /* Some globals */ | 105 | /* Some globals */ |
106 | static int one = 1; | 106 | static const int one = 1; |
107 | 107 | ||
108 | #ifdef CONFIG_FEATURE_TELNET_TTYPE | 108 | #ifdef CONFIG_FEATURE_TELNET_TTYPE |
109 | static char *ttype; | 109 | static char *ttype; |