ipsecctrl: Fix compiler warning.

This commit is contained in:
Michael Tremer
2014-03-26 23:47:14 +01:00
parent 7add463e51
commit 8fcb92530e

View File

@@ -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] = "";