From 8fcb92530e4ddd8146d0d82e380a161cc85413e4 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 26 Mar 2014 23:47:14 +0100 Subject: [PATCH] ipsecctrl: Fix compiler warning. --- src/misc-progs/ipsecctrl.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/misc-progs/ipsecctrl.c b/src/misc-progs/ipsecctrl.c index 570fdebab..eb3fc4984 100644 --- a/src/misc-progs/ipsecctrl.c +++ b/src/misc-progs/ipsecctrl.c @@ -44,6 +44,14 @@ void usage() { fprintf (stderr, "\t\tI : Print Statusinfo\n"); } +static void ipsec_reload() { + /* Re-read all configuration files and secrets and + * reload the daemon (#10339). + */ + safe_system("/usr/sbin/ipsec rereadall >/dev/null 2>&1"); + safe_system("/usr/sbin/ipsec reload >/dev/null 2>&1"); +} + /* ACCEPT the ipsec protocol ah, esp & udp (for nat traversal) on the specified interface */ @@ -174,14 +182,6 @@ void turn_connection_off (char *name) { ipsec_reload(); } -void ipsec_reload() { - /* Re-read all configuration files and secrets and - * reload the daemon (#10339). - */ - safe_system("/usr/sbin/ipsec rereadall >/dev/null 2>&1"); - safe_system("/usr/sbin/ipsec reload >/dev/null 2>&1"); -} - int main(int argc, char *argv[]) { char configtype[STRING_SIZE]; char redtype[STRING_SIZE] = ""; -- 2.39.2