aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>1997-12-07 20:49:39 +0000
committerWolfram Schneider <wosch@FreeBSD.org>1997-12-07 20:49:39 +0000
commitf1f5ba1e4ce1a6ed9887163673c7e19fe05a09a8 (patch)
tree36a9bd6499a80e60ac371b8d67858ab9251e2923 /bin
parenta873f07c1c95f1e917610366a1779beaa4f4fc72 (diff)
Notes
Diffstat (limited to 'bin')
-rw-r--r--bin/rcp/rcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/rcp/rcp.c b/bin/rcp/rcp.c
index dd88d37046966..dff0ef8105888 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.14 1997/06/06 06:43:19 charnier Exp $
+ * $Id: rcp.c,v 1.15 1997/09/28 08:32:59 markm 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 ? " -R" : "", pflag ? " -p" : "",
argv[i], argv[argc - 1]);
if (susystem(bp, userid))
++errs;