artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1180680
)
Since -s argument is no longer checked, during reexec, the argv size then must
author
mestre
<mestre@openbsd.org>
Sun, 5 Aug 2018 09:37:52 +0000
(09:37 +0000)
committer
mestre
<mestre@openbsd.org>
Sun, 5 Aug 2018 09:37:52 +0000
(09:37 +0000)
be shortened by 1.
OK florian@
sbin/slaacd/slaacd.c
patch
|
blob
|
history
diff --git
a/sbin/slaacd/slaacd.c
b/sbin/slaacd/slaacd.c
index
244ac43
..
c2d016d
100644
(file)
--- a/
sbin/slaacd/slaacd.c
+++ b/
sbin/slaacd/slaacd.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: slaacd.c,v 1.
29 2018/08/04 09:36:49 florian Exp $
*/
+/* $OpenBSD: slaacd.c,v 1.
30 2018/08/05 09:37:52 mestre Exp $
*/
/*
* Copyright (c) 2017 Florian Obser <florian@openbsd.org>
@@
-333,7
+333,7
@@
main_shutdown(void)
static pid_t
start_child(int p, char *argv0, int fd, int debug, int verbose)
{
- char *argv[
8
];
+ char *argv[
7
];
int argc = 0;
pid_t pid;