diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-04 22:34:18 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-04 22:34:18 +0000 |
commit | 503d6ddfeeaa7b969dca1f618abb7b0f1b675113 (patch) | |
tree | 7f179d38452264d0525cf46415d955b0d56764b1 /bin | |
parent | 19b69d3732fcf70145e097c8969c8e75cfaf180b (diff) |
Eat backslashes in regex's so things like:
-s '/\/bin\/cat/\/bin\/dog/'
work. This means we have to be a bit more clever in finding the pattern
delimeters (ie: not strchr).
Diffstat (limited to 'bin')
-rw-r--r-- | bin/pax/pat_rep.c | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/bin/pax/pat_rep.c b/bin/pax/pat_rep.c index d1c87c639ad..37be97f45f7 100644 --- a/bin/pax/pat_rep.c +++ b/bin/pax/pat_rep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pat_rep.c,v 1.14 2001/07/04 21:59:53 millert Exp $ */ +/* $OpenBSD: pat_rep.c,v 1.15 2001/07/04 22:34:17 millert Exp $ */ /* $NetBSD: pat_rep.c,v 1.4 1995/03/21 09:07:33 cgd Exp $ */ /*- @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)pat_rep.c 8.2 (Berkeley) 4/18/94"; #else -static char rcsid[] = "$OpenBSD: pat_rep.c,v 1.14 2001/07/04 21:59:53 millert Exp $"; +static char rcsid[] = "$OpenBSD: pat_rep.c,v 1.15 2001/07/04 22:34:17 millert Exp $"; #endif #endif /* not lint */ @@ -123,7 +123,15 @@ rep_add(str) * first character in the string specifies what the delimiter is for * this expression */ - if ((pt1 = strchr(str+1, *str)) == NULL) { + for (pt1 = str+1; *pt1; pt1++) { + if (*pt1 == '\\') { + pt1++; + continue; + } + if (*pt1 == *str) + break; + } + if (pt1 == NULL) { paxwarn(1, "Invalid replacement string %s", str); return(-1); } @@ -151,7 +159,15 @@ rep_add(str) * we then point the node at the new substitution string */ *pt1++ = *str; - if ((pt2 = strchr(pt1, *str)) == NULL) { + for (pt2 = pt1; *pt2; pt2++) { + if (*pt2 == '\\') { + pt2++; + continue; + } + if (*pt2 == *str) + break; + } + if (pt2 == NULL) { regfree(&(rep->rcmp)); (void)free((char *)rep); paxwarn(1, "Invalid replacement string %s", str); @@ -1112,7 +1128,7 @@ resub(rp, pm, src, inpt, dest, destend) /* * Ordinary character, just copy it */ - if ((c == '\\') && ((*spt == '\\') || (*spt == '&'))) + if ((c == '\\') && (*spt != '\0')) c = *spt++; *dpt++ = c; continue; |