diff options
author | Denis Vlasenko | 2006-10-27 09:02:31 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-27 09:02:31 +0000 |
commit | d3d004dd3507f841745956a035fff68936378f9c (patch) | |
tree | 139fa79a102d11dbab9828d2649c119245b196b1 /coreutils | |
parent | 1340ca8c87d81bf00e604905f25bc04da22e980f (diff) | |
download | busybox-d3d004dd3507f841745956a035fff68936378f9c.zip busybox-d3d004dd3507f841745956a035fff68936378f9c.tar.gz |
last nail into error_msg() (de)capitalization
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/sort.c | 8 | ||||
-rw-r--r-- | coreutils/uudecode.c | 16 |
2 files changed, 12 insertions, 12 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c index 972477b..1ba05ec 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c @@ -153,7 +153,7 @@ static int compare_keys(const void *xarg, const void *yarg) /* Perform actual comparison */ switch(flags&7) { default: - bb_error_msg_and_die("Unknown sort type."); + bb_error_msg_and_die("unknown sort type"); break; /* Ascii sort */ case 0: @@ -233,12 +233,12 @@ int sort_main(int argc, char **argv) switch(*line) { #ifdef CONFIG_FEATURE_SORT_BIG case 'o': - if(outfile) bb_error_msg_and_die("Too many -o."); + if(outfile) bb_error_msg_and_die("too many -o"); outfile=xfopen(optarg,"w"); break; case 't': if(key_separator || optarg[1]) - bb_error_msg_and_die("Too many -t."); + bb_error_msg_and_die("too many -t"); key_separator=*optarg; break; /* parse sort key */ @@ -262,7 +262,7 @@ int sort_main(int argc, char **argv) temp2=strchr(optlist,*temp); flag=(1<<(temp2-optlist)); if(!temp2 || (flag>FLAG_M && flag<FLAG_b)) - bb_error_msg_and_die("Unknown key option."); + bb_error_msg_and_die("unknown key option"); /* b after , means strip _trailing_ space */ if(i && flag==FLAG_b) flag=FLAG_bb; key->flags|=flag; diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index a08d985..8b7de74 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c @@ -23,7 +23,7 @@ static int read_stduu(FILE *src_stream, FILE *dst_stream) char *line_ptr = line; if (strcmp(line, "end") == 0) { - return(EXIT_SUCCESS); + return EXIT_SUCCESS; } length = ((*line_ptr - 0x20) & 0x3f)* 4 / 3; @@ -32,13 +32,13 @@ static int read_stduu(FILE *src_stream, FILE *dst_stream) continue; } if (length > 60) { - bb_error_msg_and_die("Line too long"); + bb_error_msg_and_die("line too long"); } line_ptr++; /* Tolerate an overly long line to accomodate a possible exta '`' */ if (strlen(line_ptr) < (size_t)length) { - bb_error_msg_and_die("Short file"); + bb_error_msg_and_die("short file"); } while (length > 0) { @@ -63,7 +63,7 @@ static int read_stduu(FILE *src_stream, FILE *dst_stream) } free(line); } - bb_error_msg_and_die("Short file"); + bb_error_msg_and_die("short file"); } static int read_base64(FILE *src_stream, FILE *dst_stream) @@ -84,7 +84,7 @@ static int read_base64(FILE *src_stream, FILE *dst_stream) do { ch = fgetc(src_stream); if (ch == EOF) { - bb_error_msg_and_die("Short file"); + bb_error_msg_and_die("short file"); } } while ((table_ptr = strchr(base64_table, ch)) == NULL); @@ -101,7 +101,7 @@ static int read_base64(FILE *src_stream, FILE *dst_stream) else if (*table_ptr == '\n') { /* Check for terminating line */ if (term_count == 5) { - return(EXIT_SUCCESS); + return EXIT_SUCCESS; } term_count = 1; continue; @@ -175,7 +175,7 @@ int uudecode_main(int argc, char **argv) free(line); ret = decode_fn_ptr(src_stream, dst_stream); fclose_if_not_stdin(src_stream); - return(ret); + return ret; } - bb_error_msg_and_die("No `begin' line"); + bb_error_msg_and_die("no 'begin' line"); } |