diff options
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); |