diff options
author | Martin Willi <martin@strongswan.org> | 2009-09-08 20:01:13 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-09-10 18:52:42 +0200 |
commit | 356b2b2780fc52be410ff6e03a23eb1993bfe3fc (patch) | |
tree | 6ae4d5b38e2dab100ce374449493579719476682 /src/charon/daemon.c | |
parent | 5b03a350fc7093aa6984dfcafede98fbb62809eb (diff) | |
download | strongswan-356b2b2780fc52be410ff6e03a23eb1993bfe3fc.tar.bz2 strongswan-356b2b2780fc52be410ff6e03a23eb1993bfe3fc.tar.xz |
pass NULL to library_init() to load settings from default file
Diffstat (limited to 'src/charon/daemon.c')
-rw-r--r-- | src/charon/daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/daemon.c b/src/charon/daemon.c index 258043032..a1ec3adef 100644 --- a/src/charon/daemon.c +++ b/src/charon/daemon.c @@ -684,7 +684,7 @@ int main(int argc, char *argv[]) dbg = dbg_stderr; /* initialize library */ - if (!library_init(STRONGSWAN_CONF)) + if (!library_init(NULL)) { library_deinit(); exit(SS_RC_LIBSTRONGSWAN_INTEGRITY); |