From e3c34498744f51085a2cb9cc7f0522c51bab7750 Mon Sep 17 00:00:00 2001 From: Peter Avalos Date: Sun, 4 Feb 2007 21:06:34 +0000 Subject: [PATCH] Remove bogus "-" operand from usage message. There is no restriction on where it may be placed, it is treated the same as the file arguments. Obtained-from: FreeBSD --- bin/cat/cat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/cat/cat.c b/bin/cat/cat.c index 1254bc0977..ce71d11f9c 100644 --- a/bin/cat/cat.c +++ b/bin/cat/cat.c @@ -36,7 +36,7 @@ * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. * @(#)cat.c 8.2 (Berkeley) 4/27/95 * $FreeBSD: src/bin/cat/cat.c,v 1.14.2.8 2002/06/29 05:09:26 tjr Exp $ - * $DragonFly: src/bin/cat/cat.c,v 1.15 2007/02/04 19:27:58 pavalos Exp $ + * $DragonFly: src/bin/cat/cat.c,v 1.16 2007/02/04 21:06:34 pavalos Exp $ */ #include @@ -72,7 +72,7 @@ static void usage(void) { fprintf(stderr, - "usage: cat [-benstuv] [-] [file ...]\n"); + "usage: cat [-benstuv] [file ...]\n"); exit(EXIT_FAILURE); } -- 2.41.0