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/wget.c | |
parent | 83177991c86dd49ac447225f33b84e1883ca49ee (diff) | |
download | busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.tar.gz busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.tar.bz2 busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.zip |
- spelling fixes
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 | } |