diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-28 09:39:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-28 09:39:18 +0000 |
commit | 3b40c8a4a7f292d04af7a13ca42e923726f18d6c (patch) | |
tree | ca639962e4491cdb48bf7b643abbc7814b7959b9 /usr.bin/find/option.c | |
parent | c4ef3d729f37d79e93343f1bce5c2201b6d425bb (diff) |
sort table; tejblum@arc.hq.cti.ru
Diffstat (limited to 'usr.bin/find/option.c')
-rw-r--r-- | usr.bin/find/option.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c index a56767e7e4d..3ba9338f390 100644 --- a/usr.bin/find/option.c +++ b/usr.bin/find/option.c @@ -1,4 +1,4 @@ -/* $OpenBSD: option.c,v 1.7 1997/11/13 08:30:34 deraadt Exp $ */ +/* $OpenBSD: option.c,v 1.8 1997/11/28 09:39:17 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.7 1997/11/13 08:30:34 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: option.c,v 1.8 1997/11/28 09:39:17 deraadt Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -58,8 +58,8 @@ static OPTION 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 }, @@ -73,9 +73,9 @@ static OPTION options[] = { { "-inum", N_INUM, c_inum, O_ARGV }, { "-links", N_LINKS, c_links, O_ARGV }, { "-ls", N_LS, c_ls, O_ZERO }, - { "-mmin", N_MMIN, c_mmin, O_ARGV }, { "-maxdepth", N_MAXDEPTH, c_maxdepth, O_ARGV }, { "-mindepth", N_MINDEPTH, c_mindepth, O_ARGV }, + { "-mmin", N_MMIN, c_mmin, O_ARGV }, { "-mount", N_XDEV, c_xdev, O_ZERO }, { "-mtime", N_MTIME, c_mtime, O_ARGV }, { "-name", N_NAME, c_name, O_ARGV }, |