summaryrefslogtreecommitdiff
path: root/usr.bin/uuencode/uuencode.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-09-06 18:58:35 +0000
committerdholland <dholland@NetBSD.org>2014-09-06 18:58:35 +0000
commitdc21e7c8c324cfee086354b8d05c3313e815e6cd (patch)
treef392e8829e1f94a60b8da01c36c153f1133d756f /usr.bin/uuencode/uuencode.c
parentf3101b6c01d46bc7b677ab102bed55c62379b39e (diff)
Clarify the usage message. For PR 49177.
Diffstat (limited to 'usr.bin/uuencode/uuencode.c')
-rw-r--r--usr.bin/uuencode/uuencode.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/uuencode/uuencode.c b/usr.bin/uuencode/uuencode.c
index c97f228fab2..50b70513415 100644
--- a/usr.bin/uuencode/uuencode.c
+++ b/usr.bin/uuencode/uuencode.c
@@ -1,4 +1,4 @@
-/* $NetBSD: uuencode.c,v 1.15 2011/09/16 15:39:30 joerg Exp $ */
+/* $NetBSD: uuencode.c,v 1.16 2014/09/06 18:58:35 dholland Exp $ */
/*-
* Copyright (c) 1983, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 1993\
#if 0
static char sccsid[] = "@(#)uuencode.c 8.2 (Berkeley) 4/2/94";
#else
-__RCSID("$NetBSD: uuencode.c,v 1.15 2011/09/16 15:39:30 joerg Exp $");
+__RCSID("$NetBSD: uuencode.c,v 1.16 2014/09/06 18:58:35 dholland Exp $");
#endif
#endif /* not lint */
@@ -195,7 +195,8 @@ encode(void)
static void
usage(void)
{
- (void)fprintf(stderr, "usage: %s [-m] [inputfile] outputname\n",
+ (void)fprintf(stderr,
+ "usage: %s [-m] [inputfile] headername > encodedfile\n",
getprogname());
exit(1);
}