aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1997-11-28 15:48:08 +0000
committerSteve Price <steve@FreeBSD.org>1997-11-28 15:48:08 +0000
commit5a5b7fdd83259dbe39f37bec958cac061d2d53c3 (patch)
tree2e02344977f2b3e27018f28b73ca793a0b27a9a6 /usr.bin
parent5f6c54ce0a7a7566f2984cbc5d3a1f4df2163a6b (diff)
Notes
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/find/option.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c
index 53ac0fbc8a4f..ef5916fe2cf0 100644
--- a/usr.bin/find/option.c
+++ b/usr.bin/find/option.c
@@ -35,7 +35,11 @@
*/
#ifndef lint
+/*
static char sccsid[] = "@(#)option.c 8.2 (Berkeley) 4/16/94";
+*/
+static const char rcsid[] =
+ "$Id$";
#endif /* not lint */
#include <sys/types.h>
@@ -57,8 +61,8 @@ static OPTION const options[] = {
{ "(", N_OPENPAREN, c_openparen, O_ZERO },
{ ")", N_CLOSEPAREN, c_closeparen, O_ZERO },
{ "-a", N_AND, NULL, O_NONE },
- { "-and", N_AND, NULL, O_NONE },
{ "-amin", N_AMIN, c_amin, O_ARGV },
+ { "-and", N_AND, NULL, O_NONE },
{ "-atime", N_ATIME, c_atime, O_ARGV },
{ "-cmin", N_CMIN, c_cmin, O_ARGV },
{ "-ctime", N_CTIME, c_ctime, O_ARGV },