From ac105a577764593539dd51b2fcaaf964f32fbc22 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Mon, 8 Dec 1997 21:02:36 +0000 Subject: [PATCH] Add -P option to cp(1) for local to local copying. Pointed out by: bde --- bin/rcp/rcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/rcp/rcp.c b/bin/rcp/rcp.c index dff0ef810588..84a018ab39cf 100644 --- a/bin/rcp/rcp.c +++ b/bin/rcp/rcp.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: rcp.c,v 1.15 1997/09/28 08:32:59 markm Exp $ + * $Id: rcp.c,v 1.16 1997/12/07 20:49:39 wosch Exp $ */ #ifndef lint @@ -344,7 +344,7 @@ tolocal(argc, argv) if (!(bp = malloc(len))) err(1, NULL); (void)snprintf(bp, len, "exec %s%s%s %s %s", _PATH_CP, - iamrecursive ? " -R" : "", pflag ? " -p" : "", + iamrecursive ? " -PR" : "", pflag ? " -p" : "", argv[i], argv[argc - 1]); if (susystem(bp, userid)) ++errs;