aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>1997-06-06 06:43:19 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>1997-06-06 06:43:19 +0000
commit43d30a79be7156f2ead0bfff4bb38f45f7aa00aa (patch)
treea8f57a0080017a1f0e81f06708475af0bfd2bfd2 /bin
parent749d4bb6499a0ca75459c7e4db4e39497337bef7 (diff)
Notes
Diffstat (limited to 'bin')
-rw-r--r--bin/rcp/rcp.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/bin/rcp/rcp.c b/bin/rcp/rcp.c
index da63ae2c18d1..486436863a3e 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.12 1997/03/28 15:24:32 imp Exp $
+ * $Id: rcp.c,v 1.13 1997/05/09 16:00:35 joerg Exp $
*/
#ifndef lint
@@ -851,17 +851,18 @@ usage()
{
#ifdef KERBEROS
#ifdef CRYPT
- (void)fprintf(stderr, "%s\n\t%s\n",
+ (void)fprintf(stderr, "%s\n%s\n",
"usage: rcp [-Kpx] [-k realm] f1 f2",
- "or: rcp [-Kprx] [-k realm] f1 ... fn directory");
+ " rcp [-Kprx] [-k realm] f1 ... fn directory");
#else
- (void)fprintf(stderr, "%s\n\t%s\n",
+ (void)fprintf(stderr, "%s\n%s\n",
"usage: rcp [-Kp] [-k realm] f1 f2",
- "or: rcp [-Kpr] [-k realm] f1 ... fn directory");
+ " rcp [-Kpr] [-k realm] f1 ... fn directory");
#endif
#else
- (void)fprintf(stderr,
- "usage: rcp [-p] f1 f2; or: rcp [-pr] f1 ... fn directory\n");
+ (void)fprintf(stderr, "%s\n%s\n",
+ "usage: rcp [-p] f1 f2",
+ " rcp [-pr] f1 ... fn directory");
#endif
exit(1);
}