diff options
author | 1997-03-30 08:28:10 +0000 | |
---|---|---|
committer | 1997-03-30 08:28:10 +0000 | |
commit | 30c87246fda79a137d243b661935a335273ac51c (patch) | |
tree | d4d820334f8c1faefcc43cebf550d37748f57c10 | |
parent | Increase timeout by a factor of ten in cd_size(). (diff) | |
download | wireguard-openbsd-30c87246fda79a137d243b661935a335273ac51c.tar.xz wireguard-openbsd-30c87246fda79a137d243b661935a335273ac51c.zip |
Adjust the input string by the right amount if the pattern wasn't at the
beginning. From NetBSD (mycroft).
-rw-r--r-- | bin/pax/pat_rep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/pax/pat_rep.c b/bin/pax/pat_rep.c index afe44a41030..3b0206ebb6f 100644 --- a/bin/pax/pat_rep.c +++ b/bin/pax/pat_rep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pat_rep.c,v 1.6 1997/02/27 23:32:59 michaels Exp $ */ +/* $OpenBSD: pat_rep.c,v 1.7 1997/03/30 08:28:10 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.6 1997/02/27 23:32:59 michaels Exp $"; +static char rcsid[] = "$OpenBSD: pat_rep.c,v 1.7 1997/03/30 08:28:10 millert Exp $"; #endif #endif /* not lint */ @@ -1011,7 +1011,7 @@ rep_name(name, nlen, prnt) # ifdef NET2_REGEX inpt = pt->rcmp->endp[0]; # else - inpt += pm[0].rm_eo; + inpt += pm[0].rm_eo - pm[0].rm_so; # endif if ((outpt == endpt) || (*inpt == '\0')) |