From owner-svn-src-stable-8@FreeBSD.ORG Thu Nov 12 13:09:36 2009 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D731E1065670; Thu, 12 Nov 2009 13:09:36 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C52CB8FC12; Thu, 12 Nov 2009 13:09:36 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nACD9alu031214; Thu, 12 Nov 2009 13:09:36 GMT (envelope-from netchild@svn.freebsd.org) Received: (from netchild@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nACD9a42031212; Thu, 12 Nov 2009 13:09:36 GMT (envelope-from netchild@svn.freebsd.org) Message-Id: <200911121309.nACD9a42031212@svn.freebsd.org> From: Alexander Leidinger Date: Thu, 12 Nov 2009 13:09:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r199222 - stable/8/sys/compat/linux X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Nov 2009 13:09:37 -0000 Author: netchild Date: Thu Nov 12 13:09:36 2009 New Revision: 199222 URL: http://svn.freebsd.org/changeset/base/199222 Log: MFC r198945: Fix typo in kernel message. The fix is based upon the patch in the PR. PR: kern/140279 Submitted by: Alexander Best Modified: stable/8/sys/compat/linux/linux_ipc.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) stable/8/sys/dev/xen/xenpci/ (props changed) Modified: stable/8/sys/compat/linux/linux_ipc.c ============================================================================== --- stable/8/sys/compat/linux/linux_ipc.c Thu Nov 12 11:54:12 2009 (r199221) +++ stable/8/sys/compat/linux/linux_ipc.c Thu Nov 12 13:09:36 2009 (r199222) @@ -872,7 +872,7 @@ linux_shmctl(struct thread *td, struct l case LINUX_SHM_LOCK: case LINUX_SHM_UNLOCK: default: - linux_msg(td, "ipc typ=%d not implemented", args->cmd & ~LINUX_IPC_64); + linux_msg(td, "ipc type %d not implemented", args->cmd & ~LINUX_IPC_64); return EINVAL; } }