diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-04-09 15:52:32 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-04-09 15:52:32 +0000 |
commit | 5c6a7eea386f9f3612310bb47b6b0848e27e3bca (patch) | |
tree | f0b0dd29d058aeff43dcb804339aed6bca57a022 | |
parent | 7454d5a75f82be8dc78792e9938bc597a04eebc5 (diff) | |
download | busybox-w32-5c6a7eea386f9f3612310bb47b6b0848e27e3bca.tar.gz busybox-w32-5c6a7eea386f9f3612310bb47b6b0848e27e3bca.tar.bz2 busybox-w32-5c6a7eea386f9f3612310bb47b6b0848e27e3bca.zip |
Really fix the 'r' command
git-svn-id: svn://busybox.net/trunk/busybox@6790 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | editors/sed.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/editors/sed.c b/editors/sed.c index 5ac7889ec..5dd5b2654 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -994,14 +994,17 @@ static void process_file(FILE * file) | |||
994 | 994 | ||
995 | case 'r':{ | 995 | case 'r':{ |
996 | FILE *outfile; | 996 | FILE *outfile; |
997 | |||
998 | outfile = fopen(sed_cmd->filename, "r"); | 997 | outfile = fopen(sed_cmd->filename, "r"); |
999 | if (outfile) { | 998 | if (outfile) { |
999 | char *line; | ||
1000 | while ((line = bb_get_chomped_line_from_file(outfile)) != NULL) { | ||
1001 | pattern_space = xrealloc(pattern_space, strlen(line) + strlen(pattern_space) + 2); | ||
1002 | strcat(pattern_space, "\n"); | ||
1003 | strcat(pattern_space, line); | ||
1004 | } | ||
1000 | bb_xprint_and_close_file(outfile); | 1005 | bb_xprint_and_close_file(outfile); |
1001 | } | 1006 | } |
1002 | /* else if we couldn't open the output file, | 1007 | |
1003 | * no biggie, just don't print anything */ | ||
1004 | altered++; | ||
1005 | } | 1008 | } |
1006 | break; | 1009 | break; |
1007 | case 'q': /* Branch to end of script and quit */ | 1010 | case 'q': /* Branch to end of script and quit */ |