summaryrefslogtreecommitdiff
path: root/usr.bin/find/option.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-06-07 15:25:01 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-06-07 15:25:01 +0000
commit5a8f9cf391e0197f428e5a51085f731dd7d379fd (patch)
tree37a789c02549e1ad4ed0503c0eb16f9ed99318c9 /usr.bin/find/option.c
parente4fe4e37b4c860726650ceed451720012139076e (diff)
option list MUST be sorted; previous commit broke "and"; karls@inet.no
Diffstat (limited to 'usr.bin/find/option.c')
-rw-r--r--usr.bin/find/option.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c
index b6a99231038..f535867af1e 100644
--- a/usr.bin/find/option.c
+++ b/usr.bin/find/option.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: option.c,v 1.9 1999/12/04 22:42:32 millert Exp $ */
+/* $OpenBSD: option.c,v 1.10 2000/06/07 15:25:00 deraadt Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -38,7 +38,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)option.c 8.1 (Berkeley) 6/6/93";*/
-static char rcsid[] = "$OpenBSD: option.c,v 1.9 1999/12/04 22:42:32 millert Exp $";
+static char rcsid[] = "$OpenBSD: option.c,v 1.10 2000/06/07 15:25:00 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -59,8 +59,8 @@ static OPTION options[] = {
{ ")", N_CLOSEPAREN, c_closeparen, O_ZERO },
{ "-a", N_AND, NULL, O_NONE },
{ "-amin", N_AMIN, c_amin, O_ARGV },
- { "-anewer", N_ANEWER, c_anewer, O_ARGV },
{ "-and", N_AND, NULL, O_NONE },
+ { "-anewer", N_ANEWER, c_anewer, O_ARGV },
{ "-atime", N_ATIME, c_atime, O_ARGV },
{ "-cmin", N_CMIN, c_cmin, O_ARGV },
{ "-cnewer", N_CNEWER, c_cnewer, O_ARGV },