diff options
author | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2009-10-26 21:03:56 +0000 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2009-10-26 21:03:56 +0000 |
commit | 3594e2b768f3b3233b130df338e157fcdb5deac0 (patch) | |
tree | 347d060e8089db211ef00d65a9937830d311ae75 /usr.bin/file | |
parent | c98ffe3707557963746335ab3f55ff2346630b9d (diff) |
Fix usage; requested by jmc@
ok jmc@ ian@
Diffstat (limited to 'usr.bin/file')
-rw-r--r-- | usr.bin/file/file.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/file/file.c b/usr.bin/file/file.c index 0b3e646b11b..692650a6c5b 100644 --- a/usr.bin/file/file.c +++ b/usr.bin/file/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.20 2009/08/27 16:26:43 deraadt Exp $ */ +/* $OpenBSD: file.c,v 1.21 2009/10/26 21:03:55 ajacoutot Exp $ */ /* * Copyright (c) Ian F. Darwin 1986-1995. * Software written by Ian F. Darwin and others; @@ -72,7 +72,7 @@ int getopt_long(int argc, char * const *argv, const char *optstring, const struc #include "patchlevel.h" #ifndef lint -FILE_RCSID("@(#)$Id: file.c,v 1.20 2009/08/27 16:26:43 deraadt Exp $") +FILE_RCSID("@(#)$Id: file.c,v 1.21 2009/10/26 21:03:55 ajacoutot Exp $") #endif /* lint */ @@ -82,8 +82,8 @@ FILE_RCSID("@(#)$Id: file.c,v 1.20 2009/08/27 16:26:43 deraadt Exp $") #define SYMLINKFLAG "" #endif -# define USAGE "Usage: %s [-bcik" SYMLINKFLAG "nNrsvz0] [-e test] [-f namefile] [-F separator] [-m magicfiles] file...\n" \ - " %s [-m magicfiles] -C\n" +# define USAGE "Usage: %s [-bcik" SYMLINKFLAG "nNprsvz0] [-e test] [-f namefile] [-F separator] [-m magicfiles] file...\n" \ + " %s -C -m magicfiles\n" #ifndef MAXPATHLEN #define MAXPATHLEN 512 |