From 1b08f101baa4608e737d8d6e3750d2a7f04f2283 Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Fri, 31 Aug 2001 07:07:28 +0000 Subject: [PATCH] o Move definition of CAP_MAX_BUF_LEN to sys/capability.h (I could have sworn I committed this before, but apparently I missed it during the merge, breaking world) Submitted by: tmm Obtained from: TrustedBSD Project Pointed out by: Mike Barcroft --- sys/sys/capability.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/sys/capability.h b/sys/sys/capability.h index 87bfb5fb9d6..5aff598ddbb 100644 --- a/sys/sys/capability.h +++ b/sys/sys/capability.h @@ -243,6 +243,8 @@ int cap_equal_np(cap_t, cap_t); /* Is the first cap set a subset of the second? */ int cap_subset_np(cap_t, cap_t); +#define CAP_MAX_BUF_LEN 1024 /* Maximum cap text buffer length */ + #endif /* !_KERNEL */ #endif /* !_SYS_CAPABILITY_H */