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 | |
parent | 83177991c86dd49ac447225f33b84e1883ca49ee (diff) | |
download | busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.tar.gz busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.tar.bz2 busybox-w32-a985d306a1fb5533e6fd93dbbcc04e493a126de8.zip |
- spelling fixes
-rw-r--r-- | coreutils/od_bloaty.c | 2 | ||||
-rw-r--r-- | editors/vi.c | 8 | ||||
-rw-r--r-- | findutils/grep.c | 2 | ||||
-rw-r--r-- | libbb/dump.c | 2 | ||||
-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 | ||||
-rw-r--r-- | procps/top.c | 2 | ||||
-rw-r--r-- | scripts/kconfig/zconf.tab.c_shipped | 2 |
10 files changed, 17 insertions, 17 deletions
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index 6948bf1e1..501a92b38 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c | |||
@@ -360,7 +360,7 @@ print_long_double(size_t n_bytes, const char *block, const char *fmt_string) | |||
360 | } | 360 | } |
361 | 361 | ||
362 | /* print_[named]_ascii are optimized for speed. | 362 | /* print_[named]_ascii are optimized for speed. |
363 | * Remember, someday you may want to pump gigabytes thru this thing. | 363 | * Remember, someday you may want to pump gigabytes through this thing. |
364 | * Saving a dozen of .text bytes here is counter-productive */ | 364 | * Saving a dozen of .text bytes here is counter-productive */ |
365 | 365 | ||
366 | static void | 366 | static void |
diff --git a/editors/vi.c b/editors/vi.c index d8492fe74..ce10a60a4 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -1863,7 +1863,7 @@ static char *text_hole_make(char * p, int size) // at "p", make a 'size' byte ho | |||
1863 | } | 1863 | } |
1864 | 1864 | ||
1865 | // close a hole in text[] | 1865 | // close a hole in text[] |
1866 | static char *text_hole_delete(char * p, char * q) // delete "p" thru "q", inclusive | 1866 | static char *text_hole_delete(char * p, char * q) // delete "p" through "q", inclusive |
1867 | { | 1867 | { |
1868 | char *src, *dest; | 1868 | char *src, *dest; |
1869 | int cnt, hole_size; | 1869 | int cnt, hole_size; |
@@ -3245,7 +3245,7 @@ static void do_cmd(char c) | |||
3245 | // | 3245 | // |
3246 | // dont separate these two commands. 'f' depends on ';' | 3246 | // dont separate these two commands. 'f' depends on ';' |
3247 | // | 3247 | // |
3248 | //**** fall thru to ... ';' | 3248 | //**** fall through to ... ';' |
3249 | case ';': // ;- look at rest of line for last forward char | 3249 | case ';': // ;- look at rest of line for last forward char |
3250 | if (cmdcnt-- > 1) { | 3250 | if (cmdcnt-- > 1) { |
3251 | do_cmd(';'); | 3251 | do_cmd(';'); |
@@ -3456,7 +3456,7 @@ static void do_cmd(char c) | |||
3456 | break; | 3456 | break; |
3457 | case 'A': // A- append at e-o-l | 3457 | case 'A': // A- append at e-o-l |
3458 | dot_end(); // go to e-o-l | 3458 | dot_end(); // go to e-o-l |
3459 | //**** fall thru to ... 'a' | 3459 | //**** fall through to ... 'a' |
3460 | case 'a': // a- append after current char | 3460 | case 'a': // a- append after current char |
3461 | if (*dot != '\n') | 3461 | if (*dot != '\n') |
3462 | dot++; | 3462 | dot++; |
@@ -3511,7 +3511,7 @@ static void do_cmd(char c) | |||
3511 | case 'I': // I- insert before first non-blank | 3511 | case 'I': // I- insert before first non-blank |
3512 | dot_begin(); // 0 | 3512 | dot_begin(); // 0 |
3513 | dot_skip_over_ws(); | 3513 | dot_skip_over_ws(); |
3514 | //**** fall thru to ... 'i' | 3514 | //**** fall through to ... 'i' |
3515 | case 'i': // i- insert before current char | 3515 | case 'i': // i- insert before current char |
3516 | case VI_K_INSERT: // Cursor Key Insert | 3516 | case VI_K_INSERT: // Cursor Key Insert |
3517 | dc_i: | 3517 | dc_i: |
diff --git a/findutils/grep.c b/findutils/grep.c index 4c9582e8c..1094dcc63 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -229,7 +229,7 @@ static int grep_file(FILE *file) | |||
229 | /* if we're just printing filenames, we stop after the first match */ | 229 | /* if we're just printing filenames, we stop after the first match */ |
230 | if (PRINT_FILES_WITH_MATCHES) { | 230 | if (PRINT_FILES_WITH_MATCHES) { |
231 | puts(cur_file); | 231 | puts(cur_file); |
232 | /* fall thru to "return 1" */ | 232 | /* fall through to "return 1" */ |
233 | } | 233 | } |
234 | /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */ | 234 | /* OPT_L aka PRINT_FILES_WITHOUT_MATCHES: return early */ |
235 | return 1; /* one match */ | 235 | return 1; /* one match */ |
diff --git a/libbb/dump.c b/libbb/dump.c index 71e35c60f..5e43d42a4 100644 --- a/libbb/dump.c +++ b/libbb/dump.c | |||
@@ -100,7 +100,7 @@ static void rewrite(FS * fs) | |||
100 | if (!fu->nextpr) | 100 | if (!fu->nextpr) |
101 | fu->nextpr = pr; | 101 | fu->nextpr = pr; |
102 | /* ignore nextpr -- its unused inside the loop and is | 102 | /* ignore nextpr -- its unused inside the loop and is |
103 | * uninitialized 1st time thru. | 103 | * uninitialized 1st time through. |
104 | */ | 104 | */ |
105 | 105 | ||
106 | /* bb_dump_skip preceding text and up to the next % sign */ | 106 | /* bb_dump_skip preceding text and up to the next % sign */ |
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 | } |
diff --git a/procps/top.c b/procps/top.c index 37b6a0cdb..a47150ea7 100644 --- a/procps/top.c +++ b/procps/top.c | |||
@@ -450,7 +450,7 @@ static NOINLINE void display_process_list(int count, int scr_width) | |||
450 | #endif | 450 | #endif |
451 | 451 | ||
452 | scr_width += 2; /* account for leading '\n' and trailing NUL */ | 452 | scr_width += 2; /* account for leading '\n' and trailing NUL */ |
453 | /* Ok, all preliminary data is ready, go thru the list */ | 453 | /* Ok, all preliminary data is ready, go through the list */ |
454 | while (count-- > 0) { | 454 | while (count-- > 0) { |
455 | unsigned col; | 455 | unsigned col; |
456 | CALC_STAT(pmem, (s->vsz*pmem_scale + pmem_half) >> pmem_shift); | 456 | CALC_STAT(pmem, (s->vsz*pmem_scale + pmem_half) >> pmem_shift); |
diff --git a/scripts/kconfig/zconf.tab.c_shipped b/scripts/kconfig/zconf.tab.c_shipped index 97100b764..b62724da0 100644 --- a/scripts/kconfig/zconf.tab.c_shipped +++ b/scripts/kconfig/zconf.tab.c_shipped | |||
@@ -1100,7 +1100,7 @@ yyparse () | |||
1100 | `yyvs': related to semantic values, | 1100 | `yyvs': related to semantic values, |
1101 | `yyls': related to locations. | 1101 | `yyls': related to locations. |
1102 | 1102 | ||
1103 | Refer to the stacks thru separate pointers, to allow yyoverflow | 1103 | Refer to the stacks through separate pointers, to allow yyoverflow |
1104 | to reallocate them elsewhere. */ | 1104 | to reallocate them elsewhere. */ |
1105 | 1105 | ||
1106 | /* The state stack. */ | 1106 | /* The state stack. */ |