diff options
author | joe <joe@FreeBSD.org> | 2000-01-27 21:17:01 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2000-01-27 21:17:01 +0000 |
commit | f1a9497df5db81a71987fa20f10c831030987e36 (patch) | |
tree | bcca8d67d721cd7e4ca8e7322d19df89912cfd26 /usr.bin/find | |
parent | 30f3b614b3b18d86be7ff164b9aba2617637b9c6 (diff) | |
download | FreeBSD-src-f1a9497df5db81a71987fa20f10c831030987e36.zip FreeBSD-src-f1a9497df5db81a71987fa20f10c831030987e36.tar.gz |
Historically file flags (schg, uschg, etc) have been converted from
string to u_long and back using two functions, flags_to_string and
string_to_flags, which co-existed with 'ls'. As time has progressed
more and more other tools have used these private functions to
manipulate the file flags.
Recently I moved these functions from /usr/src/bin/ls to libutil,
but after some discussion with bde it's been decided that they
really ought to go in libc.
There are two already existing libc functions for manipulating file
modes: setmode and getmode. In keeping with these flags_to_string
has been renamed getflags and string_to_flags to setflags.
The manual page could probably be improved upon ;)
Diffstat (limited to 'usr.bin/find')
-rw-r--r-- | usr.bin/find/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/find/function.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/find/Makefile b/usr.bin/find/Makefile index a6e29a7..1d962b9 100644 --- a/usr.bin/find/Makefile +++ b/usr.bin/find/Makefile @@ -3,7 +3,5 @@ PROG= find SRCS= find.c function.c ls.c main.c misc.c operator.c option.c -DPADD= ${LIBUTIL} -LDADD= -lutil .include <bsd.prog.mk> diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c index de7f8b1..7033bde 100644 --- a/usr.bin/find/function.c +++ b/usr.bin/find/function.c @@ -58,8 +58,6 @@ static char rcsid[] = "$FreeBSD$"; #include "find.h" -int string_to_flags __P((char **, u_long *, u_long *)); - #define COMPARE(a, b) { \ switch (plan->flags) { \ case F_EQUAL: \ @@ -994,7 +992,7 @@ c_flags(flags_str) new->flags = F_ATLEAST; flags_str++; } - if (string_to_flags(&flags_str, &flags, ¬flags) == 1) + if (setflags(&flags_str, &flags, ¬flags) == 1) errx(1, "-flags: %s: illegal flags string", flags_str); new->fl_flags = flags; |