artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4480d17
)
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:05 +0000
(09:37 +0000)
committer
mestre
<mestre@openbsd.org>
Sun, 5 Aug 2018 09:37:05 +0000
(09:37 +0000)
be shortened by 1.
OK florian@
usr.sbin/rad/rad.c
patch
|
blob
|
history
diff --git
a/usr.sbin/rad/rad.c
b/usr.sbin/rad/rad.c
index
81265d9
..
3be3de9
100644
(file)
--- a/
usr.sbin/rad/rad.c
+++ b/
usr.sbin/rad/rad.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: rad.c,v 1.1
4 2018/08/04 09:37:17 florian Exp $
*/
+/* $OpenBSD: rad.c,v 1.1
5 2018/08/05 09:37:05 mestre Exp $
*/
/*
* Copyright (c) 2018 Florian Obser <florian@openbsd.org>
@@
-351,7
+351,7
@@
main_shutdown(void)
static pid_t
start_child(int p, char *argv0, int fd, int debug, int verbose)
{
- char *argv[
7
];
+ char *argv[
6
];
int argc = 0;
pid_t pid;