diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 10:42:51 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 10:42:51 +0000 |
commit | bf0a201008671f81c107de72c026b1b84967561d (patch) | |
tree | af74820b70fa27929fe218c95822c20651b60637 /networking/telnet.c | |
parent | 5dd7ef0f37373e397a7160cb431a32ae57f9f7d9 (diff) | |
download | busybox-w32-bf0a201008671f81c107de72c026b1b84967561d.tar.gz busybox-w32-bf0a201008671f81c107de72c026b1b84967561d.tar.bz2 busybox-w32-bf0a201008671f81c107de72c026b1b84967561d.zip |
style fixes
last xcalloc replaced by xzalloc
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 6085d885a..e65b6918d 100644 --- a/networking/telnet.c +++ b/networking/telnet.c | |||
@@ -320,7 +320,7 @@ static void putiac_subopt(byte c, char *str) | |||
320 | putiac(c); | 320 | putiac(c); |
321 | putiac(0); | 321 | putiac(0); |
322 | 322 | ||
323 | while(*str) | 323 | while (*str) |
324 | putiac(*str++); | 324 | putiac(*str++); |
325 | 325 | ||
326 | putiac(IAC); | 326 | putiac(IAC); |
@@ -343,12 +343,12 @@ static void putiac_subopt_autologin(void) | |||
343 | putiac(TELQUAL_IS); | 343 | putiac(TELQUAL_IS); |
344 | putiac(NEW_ENV_VAR); | 344 | putiac(NEW_ENV_VAR); |
345 | 345 | ||
346 | while(*user) | 346 | while (*user) |
347 | putiac(*user++); | 347 | putiac(*user++); |
348 | 348 | ||
349 | putiac(NEW_ENV_VALUE); | 349 | putiac(NEW_ENV_VALUE); |
350 | 350 | ||
351 | while(*autologin) | 351 | while (*autologin) |
352 | putiac(*autologin++); | 352 | putiac(*autologin++); |
353 | 353 | ||
354 | putiac(IAC); | 354 | putiac(IAC); |