diff options
| author | 2004-07-08 15:11:37 +0000 | |
|---|---|---|
| committer | 2004-07-08 15:11:37 +0000 | |
| commit | d38a60a2a36eaa05b2a4dfe861388f40968e206e (patch) | |
| tree | a202f204315d9b7458c4f3113d6a45fb7b7ab114 /sys/compat/linux/linux_socket.c | |
| parent | kill traces of on-the-fly reconfigure (from bgpd), not needed in ntpd (diff) | |
| download | wireguard-openbsd-d38a60a2a36eaa05b2a4dfe861388f40968e206e.tar.xz wireguard-openbsd-d38a60a2a36eaa05b2a4dfe861388f40968e206e.zip | |
we don't care about copyout's success. add a comment to appease sturm@
Diffstat (limited to 'sys/compat/linux/linux_socket.c')
| -rw-r--r-- | sys/compat/linux/linux_socket.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c index bceffab5d99..c885d9e2675 100644 --- a/sys/compat/linux/linux_socket.c +++ b/sys/compat/linux/linux_socket.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_socket.c,v 1.31 2003/11/25 21:43:42 nordin Exp $ */ +/* $OpenBSD: linux_socket.c,v 1.32 2004/07/08 15:11:37 tedu Exp $ */ /* $NetBSD: linux_socket.c,v 1.14 1996/04/05 00:01:50 christos Exp $ */ /* @@ -1105,6 +1105,7 @@ done: /* replace level, just in case somebody cares. */ if (level == SOL_SOCKET) { level = 1; + /* don't worry about the error */ copyout(&level, &((struct cmsghdr *)control)->cmsg_level, sizeof(int)); } |
