summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authormvs <mvs@cvs.openbsd.org>2021-06-04 09:05:20 +0000
committermvs <mvs@cvs.openbsd.org>2021-06-04 09:05:20 +0000
commitdd949703747f488cf0b24a18d8afb762cbe19a51 (patch)
treeb97766d1182798f2b4f0b144addde79e424824b5 /sys/kern
parent3d42841e1d3929c212186a78335f04333cd026fc (diff)
Unlock connect(2). Again.
ok mpi@
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/syscalls.master4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 8d45940ac62..3580d86435d 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
-; $OpenBSD: syscalls.master,v 1.217 2021/06/02 11:30:23 mvs Exp $
+; $OpenBSD: syscalls.master,v 1.218 2021/06/04 09:05:19 mvs Exp $
; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -212,7 +212,7 @@
95 STD { int sys_fsync(int fd); }
96 STD { int sys_setpriority(int which, id_t who, int prio); }
97 STD NOLOCK { int sys_socket(int domain, int type, int protocol); }
-98 STD { int sys_connect(int s, const struct sockaddr *name, \
+98 STD NOLOCK { int sys_connect(int s, const struct sockaddr *name, \
socklen_t namelen); }
99 STD { int sys_getdents(int fd, void *buf, size_t buflen); }
100 STD { int sys_getpriority(int which, id_t who); }