From: millert Date: Sun, 30 Mar 1997 08:28:10 +0000 (+0000) Subject: Adjust the input string by the right amount if the pattern wasn't at the X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=30c87246fda79a137d243b661935a335273ac51c;p=openbsd Adjust the input string by the right amount if the pattern wasn't at the beginning. From NetBSD (mycroft). --- 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'))