diff options
author | mortimer <mortimer@cvs.openbsd.org> | 2021-01-28 01:20:38 +0000 |
---|---|---|
committer | mortimer <mortimer@cvs.openbsd.org> | 2021-01-28 01:20:38 +0000 |
commit | 5cbdc74ec67b3e7f66e8bc8256befc7c488d572b (patch) | |
tree | ec4fdbf217e09c67f2c77d1103ef959bffe18e9f /sbin/iked | |
parent | 716d71fdd33319f58e31db80b9950d9b5584aaa6 (diff) |
Extern privsep_process. Fixes compilation with -fno-common.
ok deraadt@
Diffstat (limited to 'sbin/iked')
-rw-r--r-- | sbin/iked/iked.h | 4 | ||||
-rw-r--r-- | sbin/iked/proc.c | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/sbin/iked/iked.h b/sbin/iked/iked.h index e765da92b62..4945fdcd70d 100644 --- a/sbin/iked/iked.h +++ b/sbin/iked/iked.h @@ -1,4 +1,4 @@ -/* $OpenBSD: iked.h,v 1.181 2021/01/26 23:06:23 tobhe Exp $ */ +/* $OpenBSD: iked.h,v 1.182 2021/01/28 01:20:37 mortimer Exp $ */ /* * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de> @@ -99,7 +99,7 @@ struct ctl_conn { TAILQ_HEAD(ctl_connlist, ctl_conn); extern struct ctl_connlist ctl_conns; -enum privsep_procid privsep_process; +extern enum privsep_procid privsep_process; /* * Runtime structures diff --git a/sbin/iked/proc.c b/sbin/iked/proc.c index 68a36522776..ad89aa82e13 100644 --- a/sbin/iked/proc.c +++ b/sbin/iked/proc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.c,v 1.33 2020/11/11 18:24:55 tobhe Exp $ */ +/* $OpenBSD: proc.c,v 1.34 2021/01/28 01:20:37 mortimer Exp $ */ /* * Copyright (c) 2010 - 2014 Reyk Floeter <reyk@openbsd.org> @@ -34,6 +34,8 @@ #include "iked.h" +enum privsep_procid privsep_process; + void proc_open(struct privsep *, struct privsep_proc *, struct privsep_proc *, size_t); void proc_close(struct privsep *); |