summaryrefslogtreecommitdiffstats
path: root/usr.bin/find
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2000-06-17 14:19:33 +0000
committerjoe <joe@FreeBSD.org>2000-06-17 14:19:33 +0000
commit8de98cc2fa7b119cc8deb33c61c9496d25825b49 (patch)
tree33363d4028bb162e624a3a2c5257ab020378f6e0 /usr.bin/find
parent3e8b2c512359fd536c5f66fbd9e265064d461886 (diff)
downloadFreeBSD-src-8de98cc2fa7b119cc8deb33c61c9496d25825b49.zip
FreeBSD-src-8de98cc2fa7b119cc8deb33c61c9496d25825b49.tar.gz
Switch over to using the new fflagstostr and strtofflags library calls.
Diffstat (limited to 'usr.bin/find')
-rw-r--r--usr.bin/find/Makefile3
-rw-r--r--usr.bin/find/function.c4
2 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/find/Makefile b/usr.bin/find/Makefile
index 6ca99d0..9691657 100644
--- a/usr.bin/find/Makefile
+++ b/usr.bin/find/Makefile
@@ -3,7 +3,6 @@
CFLAGS+= -Wall
PROG= find
-SRCS= find.c function.c ls.c main.c misc.c operator.c option.c setflags.c
-.PATH: ${.CURDIR}/../../lib/libc/gen
+SRCS= find.c function.c ls.c main.c misc.c operator.c option.c
.include <bsd.prog.mk>
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c
index d833a91..1534ee2 100644
--- a/usr.bin/find/function.c
+++ b/usr.bin/find/function.c
@@ -75,8 +75,6 @@ static const char rcsid[] =
} \
}
-u_long setflags __P((char **, u_long *, u_long *));
-
static PLAN *palloc __P((enum ntype, int (*) __P((PLAN *, FTSENT *))));
/*
@@ -1060,7 +1058,7 @@ c_flags(flags_str)
new->flags = F_ATLEAST;
flags_str++;
}
- if (setflags(&flags_str, &flags, &notflags) == 1)
+ if (strtofflags(&flags_str, &flags, &notflags) == 1)
errx(1, "-flags: %s: illegal flags string", flags_str);
new->fl_flags = flags;
OpenPOWER on IntegriCloud