summaryrefslogtreecommitdiffstats
path: root/bin/chflags/chflags.c
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 /bin/chflags/chflags.c
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 'bin/chflags/chflags.c')
-rw-r--r--bin/chflags/chflags.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/chflags/chflags.c b/bin/chflags/chflags.c
index c19c7e4..3ff36ef 100644
--- a/bin/chflags/chflags.c
+++ b/bin/chflags/chflags.c
@@ -56,8 +56,6 @@ static const char rcsid[] =
#include <string.h>
#include <unistd.h>
-int setflags __P((char **, u_long *, u_long *));
-
void usage __P((void));
int
@@ -123,7 +121,7 @@ main(argc, argv)
set = val;
oct = 1;
} else {
- if (setflags(&flags, &set, &clear))
+ if (strtofflags(&flags, &set, &clear))
errx(1, "invalid flag: %s", flags);
clear = ~clear;
oct = 0;
OpenPOWER on IntegriCloud