diff options
author | bde <bde@FreeBSD.org> | 1998-11-29 10:41:01 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-11-29 10:41:01 +0000 |
commit | 095dc8ca5de530a16a744b3c238ef6979215fa5a (patch) | |
tree | 4c72021279ad28a29b67b14527cf94114f318157 /usr.bin/find | |
parent | 40847d6be13cfd4827676f8b4ab0776d23a9189d (diff) | |
download | FreeBSD-src-095dc8ca5de530a16a744b3c238ef6979215fa5a.zip FreeBSD-src-095dc8ca5de530a16a744b3c238ef6979215fa5a.tar.gz |
Fixed disorder and and usage message. Improved English.
Broken in: previous commit
Diffstat (limited to 'usr.bin/find')
-rw-r--r-- | usr.bin/find/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c index 2ba3ea4..4ea3f36 100644 --- a/usr.bin/find/main.c +++ b/usr.bin/find/main.c @@ -65,8 +65,8 @@ int ftsoptions; /* options for the ftsopen(3) call */ int isdeprecated; /* using deprecated syntax */ int isdepth; /* do directories on post-order visit */ int isoutput; /* user specified output operator */ +int issort; /* do directories in lexicographical order */ int isxargs; /* don't permit xargs delimiting chars */ -int issort; /* travel the file hierarchy lexicographical order */ static void usage __P((void)); @@ -155,6 +155,6 @@ static void usage() { (void)fprintf(stderr, -"usage: find [-H | -L | -P] [-Xdx] [-f file] [file ...] [expression]\n"); +"usage: find [-H | -L | -P] [-Xdsx] [-f file] [file ...] [expression]\n"); exit(1); } |