artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3a6f888
)
Fix test_fork() prototype.
author
anton
<anton@openbsd.org>
Tue, 3 Sep 2024 04:59:03 +0000
(
04:59
+0000)
committer
anton
<anton@openbsd.org>
Tue, 3 Sep 2024 04:59:03 +0000
(
04:59
+0000)
regress/sys/kern/unveil/syscalls.c
patch
|
blob
|
history
diff --git
a/regress/sys/kern/unveil/syscalls.c
b/regress/sys/kern/unveil/syscalls.c
index
0899aa9
..
76fce4f
100644
(file)
--- a/
regress/sys/kern/unveil/syscalls.c
+++ b/
regress/sys/kern/unveil/syscalls.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: syscalls.c,v 1.3
6 2024/08/23 12:56:26
anton Exp $ */
+/* $OpenBSD: syscalls.c,v 1.3
7 2024/09/03 04:59:03
anton Exp $ */
/*
* Copyright (c) 2017-2019 Bob Beck <beck@openbsd.org>
@@
-679,8
+679,9
@@
test_fork_body(int do_uv)
UV_SHOULD_ENOENT((open(uv_file2, O_RDWR|O_CREAT, 0644) == -1), "open after fork");
return 0;
}
+
static int
-test_fork()
+test_fork(
int do_uv
)
{
printf("testing fork inhertiance\n");
do_unveil();