From b029146cfa8297e4539bf98d7639eb79bd259893 Mon Sep 17 00:00:00 2001 From: jdolecek Date: Wed, 18 Oct 2000 08:58:11 +0000 Subject: [PATCH] move the -and option in options[] table where it alphabetically belongs, so that -amin works again this fixes bin/11251 --- usr.bin/find/option.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c index db05912a38a2..0065e74a6c80 100644 --- a/usr.bin/find/option.c +++ b/usr.bin/find/option.c @@ -1,4 +1,4 @@ -/* $NetBSD: option.c,v 1.14 2000/03/16 18:44:30 enami Exp $ */ +/* $NetBSD: option.c,v 1.15 2000/10/18 08:58:11 jdolecek Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "from: @(#)option.c 8.2 (Berkeley) 4/16/94"; #else -__RCSID("$NetBSD: option.c,v 1.14 2000/03/16 18:44:30 enami Exp $"); +__RCSID("$NetBSD: option.c,v 1.15 2000/10/18 08:58:11 jdolecek Exp $"); #endif #endif /* not lint */ @@ -65,8 +65,8 @@ static OPTION const options[] = { { "(", N_OPENPAREN, c_openparen, 0 }, { ")", N_CLOSEPAREN, c_closeparen, 0 }, { "-a", N_AND, c_null, 0 }, - { "-and", N_AND, c_null, 0 }, { "-amin", N_AMIN, c_amin, 1 }, + { "-and", N_AND, c_null, 0 }, { "-atime", N_ATIME, c_atime, 1 }, { "-cmin", N_CMIN, c_cmin, 1 }, { "-ctime", N_CTIME, c_ctime, 1 },