From de489d06842831335a659a8a4b6c2e5ccc873705 Mon Sep 17 00:00:00 2001 From: martin Date: Fri, 22 Jun 2012 08:47:47 +0000 Subject: [PATCH] From the "parse errors that you just do not see as a human" department: build fix. --- sys/compat/linux/common/linux_socketcall.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/compat/linux/common/linux_socketcall.c b/sys/compat/linux/common/linux_socketcall.c index 42ffb53f6858..f76cbb0cddef 100644 --- a/sys/compat/linux/common/linux_socketcall.c +++ b/sys/compat/linux/common/linux_socketcall.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_socketcall.c,v 1.41 2012/06/21 17:55:15 christos Exp $ */ +/* $NetBSD: linux_socketcall.c,v 1.42 2012/06/22 08:47:47 martin Exp $ */ /*- * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: linux_socketcall.c,v 1.41 2012/06/21 17:55:15 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_socketcall.c,v 1.42 2012/06/22 08:47:47 martin Exp $"); #include #include @@ -96,8 +96,8 @@ static const struct { {L("connect"), sizeof(struct linux_sys_connect_args)}, /* 3 */ {L("listen"), sizeof(struct linux_sys_listen_args)}, /* 4 */ {L("accept"), sizeof(struct linux_sys_accept_args)}, /* 5 */ - {L("getsockname)",sizeof(struct linux_sys_getsockname_args)}, /* 6 */ - {L("getpeername)",sizeof(struct linux_sys_getpeername_args)}, /* 7 */ + {L("getsockname"),sizeof(struct linux_sys_getsockname_args)}, /* 6 */ + {L("getpeername"),sizeof(struct linux_sys_getpeername_args)}, /* 7 */ {L("socketpair"),sizeof(struct linux_sys_socketpair_args)}, /* 8 */ {L("send"), sizeof(struct linux_sys_send_args)}, /* 9 */ {L("recv"), sizeof(struct linux_sys_recv_args)}, /* 10 */