diff options
-rw-r--r-- | editors/sed.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/editors/sed.c b/editors/sed.c index d1db5fa4f..1cbf974b6 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -714,6 +714,7 @@ static void process_file(FILE *file) | |||
714 | static int linenum = 0; /* GNU sed does not restart counting lines at EOF */ | 714 | static int linenum = 0; /* GNU sed does not restart counting lines at EOF */ |
715 | unsigned int still_in_range = 0; | 715 | unsigned int still_in_range = 0; |
716 | int altered; | 716 | int altered; |
717 | int force_print; | ||
717 | 718 | ||
718 | line = bb_get_chomped_line_from_file(file); | 719 | line = bb_get_chomped_line_from_file(file); |
719 | if (line == NULL) { | 720 | if (line == NULL) { |
@@ -731,6 +732,7 @@ static void process_file(FILE *file) | |||
731 | 732 | ||
732 | linenum++; | 733 | linenum++; |
733 | altered = 0; | 734 | altered = 0; |
735 | force_print = 0; | ||
734 | 736 | ||
735 | /* for every line, go through all the commands */ | 737 | /* for every line, go through all the commands */ |
736 | for (sed_cmd = sed_cmd_head.linear; sed_cmd; sed_cmd = sed_cmd->linear) { | 738 | for (sed_cmd = sed_cmd_head.linear; sed_cmd; sed_cmd = sed_cmd->linear) { |
@@ -797,7 +799,7 @@ static void process_file(FILE *file) | |||
797 | substituted = do_subst_command(sed_cmd, &line); | 799 | substituted = do_subst_command(sed_cmd, &line); |
798 | altered |= substituted; | 800 | altered |= substituted; |
799 | if (!be_quiet && altered && ((sed_cmd->linear == NULL) || (sed_cmd->linear->cmd != 's'))) { | 801 | if (!be_quiet && altered && ((sed_cmd->linear == NULL) || (sed_cmd->linear->cmd != 's'))) { |
800 | puts(line); | 802 | force_print = 1; |
801 | } | 803 | } |
802 | 804 | ||
803 | /* we also print the line if we were given the 'p' flag | 805 | /* we also print the line if we were given the 'p' flag |
@@ -908,9 +910,9 @@ static void process_file(FILE *file) | |||
908 | /* we will print the line unless we were told to be quiet or if the | 910 | /* we will print the line unless we were told to be quiet or if the |
909 | * line was altered (via a 'd'elete or 's'ubstitution), in which case | 911 | * line was altered (via a 'd'elete or 's'ubstitution), in which case |
910 | * the altered line was already printed */ | 912 | * the altered line was already printed */ |
911 | if (!be_quiet && !altered) | 913 | if ((!be_quiet && !altered) || force_print){ |
912 | puts(line); | 914 | puts(line); |
913 | 915 | } | |
914 | free(line); | 916 | free(line); |
915 | line = next_line; | 917 | line = next_line; |
916 | } while (line); | 918 | } while (line); |