Author: eadler
Date: Mon Oct 22 02:59:55 2012
New Revision: 241837
URL: http://svn.freebsd.org/changeset/base/241837

Log:
  Fix build if COMPAT_43 is defined without one of
  COMPAT_FREEBSD[4567]
  
  Approved by:  cperciva

Modified:
  head/sys/sys/ipc.h

Modified: head/sys/sys/ipc.h
==============================================================================
--- head/sys/sys/ipc.h  Mon Oct 22 02:59:49 2012        (r241836)
+++ head/sys/sys/ipc.h  Mon Oct 22 02:59:55 2012        (r241837)
@@ -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 */
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to