svn commit: r199222 - stable/8/sys/compat/linux
Alexander Leidinger
netchild at FreeBSD.org
Thu Nov 12 13:09:37 UTC 2009
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 <alexbestms at math.uni-muenster.de>
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;
}
}
More information about the svn-src-stable-8
mailing list