From: Mark Whitley Date: Tue, 17 Apr 2001 18:26:11 +0000 (-0000) Subject: Changed line[strlen(line) - 1] = '\0'; to chomp(line); X-Git-Tag: 0_52~335 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6e808ca35419ba7ec14dd836f0e013ea35ff0aee;p=oweals%2Fbusybox.git Changed line[strlen(line) - 1] = '\0'; to chomp(line); --- diff --git a/coreutils/sort.c b/coreutils/sort.c index b84453d3a..5ecca8b8f 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c @@ -71,7 +71,7 @@ int sort_main(int argc, char **argv) while ((line = get_line_from_file(fp)) != NULL) { lines = xrealloc(lines, sizeof(char *) * (nlines + 1)); - line[strlen(line) - 1] = '\0'; + chomp(line); lines[nlines++] = line; } } diff --git a/sort.c b/sort.c index b84453d3a..5ecca8b8f 100644 --- a/sort.c +++ b/sort.c @@ -71,7 +71,7 @@ int sort_main(int argc, char **argv) while ((line = get_line_from_file(fp)) != NULL) { lines = xrealloc(lines, sizeof(char *) * (nlines + 1)); - line[strlen(line) - 1] = '\0'; + chomp(line); lines[nlines++] = line; } }