From d9c7237d04f3f9baae8d7a87d9a031b8474800c9 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Fri, 25 Aug 2006 09:42:16 +0000 Subject: [PATCH] Remove a stray -a option that probably sneaked in from julian's attempt to enter append mode twice in vi(1). :-) --- bin/cp/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/cp/utils.c b/bin/cp/utils.c index c40204f7ff7d..e4c11fe3e8fb 100644 --- a/bin/cp/utils.c +++ b/bin/cp/utils.c @@ -426,8 +426,8 @@ usage(void) { (void)fprintf(stderr, "%s\n%s\n", -"usage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-aplv] source_file target_file", -" cp [-R [-H | -L | -P]] [-f | -i | -n] [-aplv] source_file ... " +"usage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-plv] source_file target_file", +" cp [-R [-H | -L | -P]] [-f | -i | -n] [-plv] source_file ... " "target_directory"); exit(EX_USAGE); }