From 6eeb186722176f28bf20ddaa0739e5ea5ffc050f Mon Sep 17 00:00:00 2001 From: eadler Date: Thu, 25 Oct 2012 03:21:46 +0000 Subject: [PATCH] MFC r241837: Fix build if COMPAT_43 is defined without one of COMPAT_FREEBSD[4567] Approved by: cperciva (implicit) git-svn-id: svn://svn.freebsd.org/base/stable/8@242050 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- sys/sys/ipc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/sys/ipc.h b/sys/sys/ipc.h index c72d913fb..e643d485e 100644 --- a/sys/sys/ipc.h +++ b/sys/sys/ipc.h @@ -70,7 +70,8 @@ typedef __uid_t uid_t; #endif #if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ - defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) + defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) || \ + defined(COMPAT_43) struct ipc_perm_old { unsigned short cuid; /* creator user id */ unsigned short cgid; /* creator group id */ -- 2.45.2