diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-10 15:23:12 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-10 15:23:12 +0000 |
commit | a6e4ade6bfa43c896174b663f48eb04a5dcf917b (patch) | |
tree | a02c40442924418ee7b6545b415d1cdfb2c86a82 | |
parent | 520529dcc958cc9ccdcd64d48035685627d4eb32 (diff) | |
download | busybox-w32-a6e4ade6bfa43c896174b663f48eb04a5dcf917b.tar.gz busybox-w32-a6e4ade6bfa43c896174b663f48eb04a5dcf917b.tar.bz2 busybox-w32-a6e4ade6bfa43c896174b663f48eb04a5dcf917b.zip |
whitespace between if and (
git-svn-id: svn://busybox.net/trunk/busybox@15047 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | networking/telnetd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/telnetd.c b/networking/telnetd.c index 1a53c0c0c..534af96ad 100644 --- a/networking/telnetd.c +++ b/networking/telnetd.c | |||
@@ -354,7 +354,7 @@ free_session(struct tsession *ts) | |||
354 | struct tsession *t = sessions; | 354 | struct tsession *t = sessions; |
355 | 355 | ||
356 | /* Unlink this telnet session from the session list. */ | 356 | /* Unlink this telnet session from the session list. */ |
357 | if(t == ts) | 357 | if (t == ts) |
358 | sessions = ts->next; | 358 | sessions = ts->next; |
359 | else { | 359 | else { |
360 | while(t->next != ts) | 360 | while(t->next != ts) |
@@ -369,9 +369,9 @@ free_session(struct tsession *ts) | |||
369 | close(ts->ptyfd); | 369 | close(ts->ptyfd); |
370 | close(ts->sockfd); | 370 | close(ts->sockfd); |
371 | 371 | ||
372 | if(ts->ptyfd == maxfd || ts->sockfd == maxfd) | 372 | if (ts->ptyfd == maxfd || ts->sockfd == maxfd) |
373 | maxfd--; | 373 | maxfd--; |
374 | if(ts->ptyfd == maxfd || ts->sockfd == maxfd) | 374 | if (ts->ptyfd == maxfd || ts->sockfd == maxfd) |
375 | maxfd--; | 375 | maxfd--; |
376 | 376 | ||
377 | free(ts); | 377 | free(ts); |
@@ -620,9 +620,9 @@ telnetd_main(int argc, char **argv) | |||
620 | continue; | 620 | continue; |
621 | } | 621 | } |
622 | #endif /* CONFIG_FEATURE_TELNETD_INETD */ | 622 | #endif /* CONFIG_FEATURE_TELNETD_INETD */ |
623 | if(!*(ts->buf1 + ts->rdidx1 + r - 1)) { | 623 | if (!*(ts->buf1 + ts->rdidx1 + r - 1)) { |
624 | r--; | 624 | r--; |
625 | if(!r) | 625 | if (!r) |
626 | continue; | 626 | continue; |
627 | } | 627 | } |
628 | ts->rdidx1 += r; | 628 | ts->rdidx1 += r; |