diff options
author | 2009-03-01 13:47:02 +0000 | |
---|---|---|
committer | 2009-03-01 13:47:02 +0000 | |
commit | b45df1a2ef96033b0e4bf0617720e1f6acd59ef9 (patch) | |
tree | 480bd69226947ba248b1b1ee23c3daba000d56d8 | |
parent | New mktemp(3) based on the one from portable mktemp(1). Now includes (diff) | |
download | wireguard-openbsd-b45df1a2ef96033b0e4bf0617720e1f6acd59ef9.tar.xz wireguard-openbsd-b45df1a2ef96033b0e4bf0617720e1f6acd59ef9.zip |
fix double space in synopsis and usage.
-rw-r--r-- | bin/rcp/rcp.1 | 7 | ||||
-rw-r--r-- | bin/rcp/rcp.c | 6 |
2 files changed, 6 insertions, 7 deletions
diff --git a/bin/rcp/rcp.1 b/bin/rcp/rcp.1 index a49e087fd86..2caad8762f7 100644 --- a/bin/rcp/rcp.1 +++ b/bin/rcp/rcp.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rcp.1,v 1.17 2007/05/31 19:19:15 jmc Exp $ +.\" $OpenBSD: rcp.1,v 1.18 2009/03/01 13:47:02 sobrado Exp $ .\" $NetBSD: rcp.1,v 1.6 1995/07/25 19:37:25 jtc Exp $ .\" .\" Copyright (c) 1983, 1990, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)rcp.1 8.1 (Berkeley) 5/31/93 .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: March 1 2009 $ .Dt RCP 1 .Os .Sh NAME @@ -42,8 +42,7 @@ .Ar file1 file2 .Nm rcp .Op Fl pr -.Ar file ... -.Ar directory +.Ar file ... directory .Sh DESCRIPTION The .Nm diff --git a/bin/rcp/rcp.c b/bin/rcp/rcp.c index ae382edb0c0..5a7dc5fd665 100644 --- a/bin/rcp/rcp.c +++ b/bin/rcp/rcp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcp.c,v 1.47 2008/01/01 09:10:25 dtucker Exp $ */ +/* $OpenBSD: rcp.c,v 1.48 2009/03/01 13:47:02 sobrado Exp $ */ /* $NetBSD: rcp.c,v 1.9 1995/03/21 08:19:06 cgd Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)rcp.c 8.2 (Berkeley) 4/2/94"; #else -static const char rcsid[] = "$OpenBSD: rcp.c,v 1.47 2008/01/01 09:10:25 dtucker Exp $"; +static const char rcsid[] = "$OpenBSD: rcp.c,v 1.48 2009/03/01 13:47:02 sobrado Exp $"; #endif #endif /* not lint */ @@ -873,7 +873,7 @@ usage(void) { (void)fprintf(stderr, "usage: %s [-p] file1 file2\n" - " %s [-pr] file ... directory\n", + " %s [-pr] file ... directory\n", __progname, __progname); exit(1); } |