diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-02-11 11:44:38 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-02-11 11:44:38 +0000 |
commit | a985d306a1fb5533e6fd93dbbcc04e493a126de8 (patch) | |
tree | bb261f14ce5adb3c3281feb9c12c58c078155927 /networking | |
parent | 83177991c86dd49ac447225f33b84e1883ca49ee (diff) | |
download | busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.tar.gz busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.tar.bz2 busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.zip |
- spelling fixes
Diffstat (limited to 'networking')
-rw-r--r-- | networking/Config.in | 6 | ||||
-rw-r--r-- | networking/nc_bloaty.c | 2 | ||||
-rw-r--r-- | networking/sendmail.c | 4 | ||||
-rw-r--r-- | networking/wget.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/networking/Config.in b/networking/Config.in index ed87a178d..5a25d6d2b 100644 --- a/networking/Config.in +++ b/networking/Config.in | |||
@@ -689,7 +689,7 @@ config FETCHMAIL | |||
689 | bool "fetchmail" | 689 | bool "fetchmail" |
690 | default n | 690 | default n |
691 | help | 691 | help |
692 | Barebones fetchmail. | 692 | Barebone fetchmail. |
693 | 693 | ||
694 | config FEATURE_FETCHMAIL_APOP | 694 | config FEATURE_FETCHMAIL_APOP |
695 | bool "Support APOP authentication" | 695 | bool "Support APOP authentication" |
@@ -699,11 +699,11 @@ config FEATURE_FETCHMAIL_APOP | |||
699 | Support secure APOP authentication. | 699 | Support secure APOP authentication. |
700 | 700 | ||
701 | config FEATURE_FETCHMAIL_FILTER | 701 | config FEATURE_FETCHMAIL_FILTER |
702 | bool "Pipe thru external filter" | 702 | bool "Pipe through external filter" |
703 | default n | 703 | default n |
704 | depends on FETCHMAIL | 704 | depends on FETCHMAIL |
705 | help | 705 | help |
706 | Support piping incoming messages thru external filter. | 706 | Support piping incoming messages through external filter. |
707 | 707 | ||
708 | config SLATTACH | 708 | config SLATTACH |
709 | bool "slattach" | 709 | bool "slattach" |
diff --git a/networking/nc_bloaty.c b/networking/nc_bloaty.c index 0b9428b71..206c5e5d9 100644 --- a/networking/nc_bloaty.c +++ b/networking/nc_bloaty.c | |||
@@ -77,7 +77,7 @@ struct globals { | |||
77 | unsigned wrote_out; /* total stdout bytes */ | 77 | unsigned wrote_out; /* total stdout bytes */ |
78 | unsigned wrote_net; /* total net bytes */ | 78 | unsigned wrote_net; /* total net bytes */ |
79 | #endif | 79 | #endif |
80 | /* ouraddr is never NULL and goes thru three states as we progress: | 80 | /* ouraddr is never NULL and goes through three states as we progress: |
81 | 1 - local address before bind (IP/port possibly zero) | 81 | 1 - local address before bind (IP/port possibly zero) |
82 | 2 - local address after bind (port is nonzero) | 82 | 2 - local address after bind (port is nonzero) |
83 | 3 - local address after connect??/recv/accept (IP and port are nonzero) */ | 83 | 3 - local address after connect??/recv/accept (IP and port are nonzero) */ |
diff --git a/networking/sendmail.c b/networking/sendmail.c index 5dababc4b..63305d149 100644 --- a/networking/sendmail.c +++ b/networking/sendmail.c | |||
@@ -481,12 +481,12 @@ int sendgetmail_main(int argc, char **argv) | |||
481 | // make tempnam(dir, salt) respect dir argument | 481 | // make tempnam(dir, salt) respect dir argument |
482 | unsetenv("TMPDIR"); | 482 | unsetenv("TMPDIR"); |
483 | 483 | ||
484 | // TODO: piping thru external filter argv... if *argv | 484 | // TODO: piping through external filter argv... if *argv |
485 | 485 | ||
486 | // cache fetch command | 486 | // cache fetch command |
487 | { | 487 | { |
488 | const char *retr = (opts & OPTF_t) ? "TOP %u 0" : "RETR %u"; | 488 | const char *retr = (opts & OPTF_t) ? "TOP %u 0" : "RETR %u"; |
489 | // loop thru messages | 489 | // loop through messages |
490 | for (; nmsg; nmsg--) { | 490 | for (; nmsg; nmsg--) { |
491 | int fd; | 491 | int fd; |
492 | char tmp_name[sizeof("tmp/XXXXXX")]; | 492 | char tmp_name[sizeof("tmp/XXXXXX")]; |
diff --git a/networking/wget.c b/networking/wget.c index 6c1c385b7..36a83560a 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -614,7 +614,7 @@ int wget_main(int argc, char **argv) | |||
614 | case 206: | 614 | case 206: |
615 | if (beg_range) | 615 | if (beg_range) |
616 | break; | 616 | break; |
617 | /*FALLTHRU*/ | 617 | /* fall through */ |
618 | default: | 618 | default: |
619 | /* Show first line only and kill any ESC tricks */ | 619 | /* Show first line only and kill any ESC tricks */ |
620 | buf[strcspn(buf, "\n\r\x1b")] = '\0'; | 620 | buf[strcspn(buf, "\n\r\x1b")] = '\0'; |
@@ -685,7 +685,7 @@ int wget_main(int argc, char **argv) | |||
685 | case 331: | 685 | case 331: |
686 | if (ftpcmd("PASS ", str, sfp, buf) == 230) | 686 | if (ftpcmd("PASS ", str, sfp, buf) == 230) |
687 | break; | 687 | break; |
688 | /* FALLTHRU (failed login) */ | 688 | /* fall through (failed login) */ |
689 | default: | 689 | default: |
690 | bb_error_msg_and_die("ftp login: %s", buf+4); | 690 | bb_error_msg_and_die("ftp login: %s", buf+4); |
691 | } | 691 | } |