Browse code

build: Fix another compile warning in console_systemd.c

console_systemd.c: In function ?get_console_input_systemd?:
console_systemd.c:75:5: warning: implicit declaration of function
?openvpn_popen? [-Wimplicit-function-declaration]
if ((std_out = openvpn_popen(&argv, NULL)) < 0)

Signed-off-by: David Sommerseth <davids@openvpn.net>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <20181008180017.31413-1-davids@openvpn.net>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg17660.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>

David Sommerseth authored on 2018/10/09 03:00:17
Showing 1 changed files
... ...
@@ -33,6 +33,7 @@
33 33
 #include "syshead.h"
34 34
 #include "console.h"
35 35
 #include "misc.h"
36
+#include "run_command.h"
36 37
 
37 38
 #include <systemd/sd-daemon.h>
38 39