Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/usr.bin/find Pullup 1.15 [jdolecek]:



details:   https://anonhg.NetBSD.org/src/rev/68c6aafcb34f
branches:  netbsd-1-5
changeset: 489911:68c6aafcb34f
user:      tv <tv%NetBSD.org@localhost>
date:      Wed Oct 18 17:06:00 2000 +0000

description:
Pullup 1.15 [jdolecek]:
move the -and option in options[] table where it alphabetically belongs,
so that -amin works again
this fixes bin/11251

diffstat:

 usr.bin/find/option.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r fc63b657b575 -r 68c6aafcb34f usr.bin/find/option.c
--- a/usr.bin/find/option.c     Wed Oct 18 17:04:38 2000 +0000
+++ b/usr.bin/find/option.c     Wed Oct 18 17:06:00 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: option.c,v 1.14 2000/03/16 18:44:30 enami Exp $        */
+/*     $NetBSD: option.c,v 1.14.4.1 2000/10/18 17:06:00 tv 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.14.4.1 2000/10/18 17:06:00 tv Exp $");
 #endif
 #endif /* not lint */
 
@@ -65,8 +65,8 @@
        { "(",          N_OPENPAREN,    c_openparen,    0 },
        { ")",          N_CLOSEPAREN,   c_closeparen,   0 },
        { "-a",         N_AND,          c_null,         0 },
+       { "-amin",      N_AMIN,         c_amin,         1 },
        { "-and",       N_AND,          c_null,         0 },
-       { "-amin",      N_AMIN,         c_amin,         1 },
        { "-atime",     N_ATIME,        c_atime,        1 },
        { "-cmin",      N_CMIN,         c_cmin,         1 },
        { "-ctime",     N_CTIME,        c_ctime,        1 },



Home | Main Index | Thread Index | Old Index