diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2001-08-31 02:11:59 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2001-08-31 02:11:59 +0000 |
commit | cbc25559e413254023bfb7f6d3e356c07083b456 (patch) | |
tree | a6720b1343fd9c15103f2b71b597d337a892d689 | |
parent | 13fdaee6224b814dea20d25f1cbd2e49bd912253 (diff) | |
download | src-cbc25559e413254023bfb7f6d3e356c07083b456.tar.gz src-cbc25559e413254023bfb7f6d3e356c07083b456.zip |
o Remove definition of CAP_MAX_BUF_LEN since it is defined in
sys/capability.h now.
Submitted by: tmm
Obtained from: TrustedBSD Project
Notes
Notes:
svn path=/head/; revision=82616
-rw-r--r-- | lib/libc/posix1e/cap_text.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/posix1e/cap_text.c b/lib/libc/posix1e/cap_text.c index 9b35c03eb1a4..05cfe0da385b 100644 --- a/lib/libc/posix1e/cap_text.c +++ b/lib/libc/posix1e/cap_text.c @@ -39,7 +39,10 @@ #include <stdlib.h> #include <string.h> -static const size_t CAP_MAX_BUF_LEN = 1024; +/* + * this one is in sys/capability.h now: + * static const size_t CAP_MAX_BUF_LEN = 1024; + */ static const size_t CAP_MAX_SMALL_BUF_LEN = 64; static const char *CAP_FLAGS[8] = { |