diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 15:40:16 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 15:40:16 +0000 |
commit | 219d14d514ca4d31b4319af14e3a64b66fe2c233 (patch) | |
tree | a74e8ce7604ff932a3990de3065c167392e4b082 /networking/telnet.c | |
parent | 644849a3aa0c834a942fb7777ec449d8098bcfc9 (diff) | |
download | busybox-w32-219d14d514ca4d31b4319af14e3a64b66fe2c233.tar.gz busybox-w32-219d14d514ca4d31b4319af14e3a64b66fe2c233.tar.bz2 busybox-w32-219d14d514ca4d31b4319af14e3a64b66fe2c233.zip |
random style fixes (extra spaces deleted)
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 cd88a9b3d..5c75a7409 100644 --- a/networking/telnet.c +++ b/networking/telnet.c | |||
@@ -188,7 +188,7 @@ static void handlenetoutput(int len) | |||
188 | else if (*p == 0x0d) | 188 | else if (*p == 0x0d) |
189 | outbuf[j++] = 0x00; | 189 | outbuf[j++] = 0x00; |
190 | } | 190 | } |
191 | if (j > 0 ) | 191 | if (j > 0) |
192 | write(G.netfd, outbuf, j); | 192 | write(G.netfd, outbuf, j); |
193 | } | 193 | } |
194 | 194 | ||