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:31 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-06-07 15:25:31 +0000
commit7e77a481569d15ec7be3c29875af0e859418e800 (patch)
treecb96328df997ed888960c00f8b2140f6320629b1 /usr.bin/find/option.c
parent5a8f9cf391e0197f428e5a51085f731dd7d379fd (diff)
-iname support; karls@inet.no
Diffstat (limited to 'usr.bin/find/option.c')
-rw-r--r--usr.bin/find/option.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c
index f535867af1e..4569907a4a5 100644
--- a/usr.bin/find/option.c
+++ b/usr.bin/find/option.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: option.c,v 1.10 2000/06/07 15:25:00 deraadt Exp $ */
+/* $OpenBSD: option.c,v 1.11 2000/06/07 15:25:30 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.10 2000/06/07 15:25:00 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: option.c,v 1.11 2000/06/07 15:25:30 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -72,6 +72,7 @@ static OPTION options[] = {
{ "-follow", N_FOLLOW, c_follow, O_ZERO },
{ "-fstype", N_FSTYPE, c_fstype, O_ARGV },
{ "-group", N_GROUP, c_group, O_ARGV },
+ { "-iname", N_INAME, c_iname, O_ARGV },
{ "-inum", N_INUM, c_inum, O_ARGV },
{ "-links", N_LINKS, c_links, O_ARGV },
{ "-ls", N_LS, c_ls, O_ZERO },