diff options
author | Denis Vlasenko | 2006-10-03 19:56:34 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-03 19:56:34 +0000 |
commit | 9275814a9e6a3af390c932238c0b1130de8d0edd (patch) | |
tree | beabb5991332e0e2af56b4cb885a8fd6fc7daae2 /networking/telnet.c | |
parent | cf94446af7a75385955e0c4de2d5898b219f5719 (diff) | |
download | busybox-9275814a9e6a3af390c932238c0b1130de8d0edd.zip busybox-9275814a9e6a3af390c932238c0b1130de8d0edd.tar.gz |
lots of silly indent fixes
Diffstat (limited to 'networking/telnet.c')
-rw-r--r-- | networking/telnet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/telnet.c b/networking/telnet.c index 344fc32..fd0f84d 100644 --- a/networking/telnet.c +++ b/networking/telnet.c @@ -205,12 +205,12 @@ static void handlenetoutput(int len) } outbuf[j++] = *p; if (*p == 0xff) - outbuf[j++] = 0xff; + outbuf[j++] = 0xff; else if (*p == 0x0d) - outbuf[j++] = 0x00; + outbuf[j++] = 0x00; } if (j > 0 ) - write(G.netfd, outbuf, j); + write(G.netfd, outbuf, j); } |