diff options
author | Maninder Singh <maninder1.s@samsung.com> | 2015-05-25 13:46:36 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-05-25 13:46:36 +0200 |
commit | 97c6491b4edf4bc9db293533ae0c3a81c4ef07f7 (patch) | |
tree | 7ac99422b82e761628c96855a57375f620f72997 /coreutils | |
parent | c4603fb09aa2ec06bc8c0ad51b69fe7995a8ea17 (diff) | |
download | busybox-w32-97c6491b4edf4bc9db293533ae0c3a81c4ef07f7.tar.gz busybox-w32-97c6491b4edf4bc9db293533ae0c3a81c4ef07f7.tar.bz2 busybox-w32-97c6491b4edf4bc9db293533ae0c3a81c4ef07f7.zip |
typo fixes
Signed-off-by: Maninder Singh <maninder1.s@samsung.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/Config.src | 2 | ||||
-rw-r--r-- | coreutils/stat.c | 2 | ||||
-rw-r--r-- | coreutils/uudecode.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/Config.src b/coreutils/Config.src index 1bbb91ee9..1ec3a0a99 100644 --- a/coreutils/Config.src +++ b/coreutils/Config.src | |||
@@ -11,7 +11,7 @@ config CAL | |||
11 | bool "cal" | 11 | bool "cal" |
12 | default y | 12 | default y |
13 | help | 13 | help |
14 | cal is used to display a monthly calender. | 14 | cal is used to display a monthly calendar. |
15 | 15 | ||
16 | config CATV | 16 | config CATV |
17 | bool "catv" | 17 | bool "catv" |
diff --git a/coreutils/stat.c b/coreutils/stat.c index 769fac078..f7fd227bb 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c | |||
@@ -374,7 +374,7 @@ static void print_it(const char *masterformat, | |||
374 | { | 374 | { |
375 | /* Create a working copy of the format string */ | 375 | /* Create a working copy of the format string */ |
376 | char *format = xstrdup(masterformat); | 376 | char *format = xstrdup(masterformat); |
377 | /* Add 2 to accomodate our conversion of the stat '%s' format string | 377 | /* Add 2 to accommodate our conversion of the stat '%s' format string |
378 | * to the printf '%llu' one. */ | 378 | * to the printf '%llu' one. */ |
379 | char *dest = xmalloc(strlen(format) + 2 + 1); | 379 | char *dest = xmalloc(strlen(format) + 2 + 1); |
380 | char *b; | 380 | char *b; |
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index 3f1227306..7aa5c67f2 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c | |||
@@ -46,7 +46,7 @@ static void FAST_FUNC read_stduu(FILE *src_stream, FILE *dst_stream, int flags U | |||
46 | 46 | ||
47 | encoded_len = line[0] * 4 / 3; | 47 | encoded_len = line[0] * 4 / 3; |
48 | /* Check that line is not too short. (we tolerate | 48 | /* Check that line is not too short. (we tolerate |
49 | * overly _long_ line to accomodate possible extra '`'). | 49 | * overly _long_ line to accommodate possible extra '`'). |
50 | * Empty line case is also caught here. */ | 50 | * Empty line case is also caught here. */ |
51 | if (str_len <= encoded_len) { | 51 | if (str_len <= encoded_len) { |
52 | break; /* go to bb_error_msg_and_die("short file"); */ | 52 | break; /* go to bb_error_msg_and_die("short file"); */ |