aboutsummaryrefslogtreecommitdiff
path: root/sed.c
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-23 21:12:07 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-23 21:12:07 +0000
commit841eec880483acc0bdb6cf73ecd363e3f5a2a8d7 (patch)
tree8c0ba50bb19cb31060546b524ef3f95f9a936528 /sed.c
parentc19a082dc1ac0fcd8ae0877ded00c711672ef006 (diff)
downloadbusybox-w32-841eec880483acc0bdb6cf73ecd363e3f5a2a8d7.tar.gz
busybox-w32-841eec880483acc0bdb6cf73ecd363e3f5a2a8d7.tar.bz2
busybox-w32-841eec880483acc0bdb6cf73ecd363e3f5a2a8d7.zip
Fix empty line substitutions (noted by Joshua Hudson).
git-svn-id: svn://busybox.net/trunk/busybox@3555 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'sed.c')
-rw-r--r--sed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sed.c b/sed.c
index 989df7cb4..709fb13a8 100644
--- a/sed.c
+++ b/sed.c
@@ -589,8 +589,8 @@ static int do_subst_command(const struct sed_cmd *sed_cmd, char **line)
589 589
590 /* and now, as long as we've got a line to try matching and if we can match 590 /* and now, as long as we've got a line to try matching and if we can match
591 * the search string, we make substitutions */ 591 * the search string, we make substitutions */
592 while (*hackline && (regexec(sed_cmd->sub_match, hackline, 592 while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
593 sed_cmd->num_backrefs+1, regmatch, 0) == 0) ) { 593 sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
594 int i; 594 int i;
595 595
596 /* print everything before the match */ 596 /* print everything before the match */