From owner-svn-src-stable@FreeBSD.ORG Thu Oct 25 03:21:47 2012 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 109319FB; Thu, 25 Oct 2012 03:21:47 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id ED0418FC0A; Thu, 25 Oct 2012 03:21:46 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9P3Lkn8060365; Thu, 25 Oct 2012 03:21:46 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9P3LkOb060363; Thu, 25 Oct 2012 03:21:46 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210250321.q9P3LkOb060363@svn.freebsd.org> From: Eitan Adler Date: Thu, 25 Oct 2012 03:21:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r242050 - stable/8/sys/sys X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Oct 2012 03:21:47 -0000 Author: eadler Date: Thu Oct 25 03:21:46 2012 New Revision: 242050 URL: http://svn.freebsd.org/changeset/base/242050 Log: MFC r241837: Fix build if COMPAT_43 is defined without one of COMPAT_FREEBSD[4567] Approved by: cperciva (implicit) Modified: stable/8/sys/sys/ipc.h Directory Properties: stable/8/sys/ (props changed) stable/8/sys/sys/ (props changed) Modified: stable/8/sys/sys/ipc.h ============================================================================== --- stable/8/sys/sys/ipc.h Thu Oct 25 03:21:43 2012 (r242049) +++ stable/8/sys/sys/ipc.h Thu Oct 25 03:21:46 2012 (r242050) @@ -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 */