Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Oct 2012 03:21:43 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r242049 - stable/9/sys/sys
Message-ID:  <201210250321.q9P3Lhhj060319@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler
Date: Thu Oct 25 03:21:43 2012
New Revision: 242049
URL: http://svn.freebsd.org/changeset/base/242049

Log:
  MFC r241837:
  	Fix build if COMPAT_43 is defined without one of
  	COMPAT_FREEBSD[4567]
  
  Approved by:	cperciva (implicit)

Modified:
  stable/9/sys/sys/ipc.h
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/sys/ipc.h
==============================================================================
--- stable/9/sys/sys/ipc.h	Thu Oct 25 03:20:01 2012	(r242048)
+++ stable/9/sys/sys/ipc.h	Thu Oct 25 03:21:43 2012	(r242049)
@@ -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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210250321.q9P3Lhhj060319>