aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2006-06-14 12:43:51 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2006-06-14 12:43:51 +0000
commit311b225740d5a7f32a604bed5366e8316d4f9b3d (patch)
treec1e2bfee4be7649795834890f598b95070333037
parent03442041a9b7b686b40da92aae5479b360fde5c8 (diff)
downloadstrongswan-311b225740d5a7f32a604bed5366e8316d4f9b3d.tar.bz2
strongswan-311b225740d5a7f32a604bed5366e8316d4f9b3d.tar.xz
added strictcrlpolicy command line argument
-rw-r--r--src/starter/invokecharon.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/starter/invokecharon.c b/src/starter/invokecharon.c
index a56a03ba8..d85575425 100644
--- a/src/starter/invokecharon.c
+++ b/src/starter/invokecharon.c
@@ -109,7 +109,11 @@ starter_start_charon (starter_config_t *cfg, bool debug)
{
arg[argc++] = "--use-syslog";
}
-
+ if (cfg->setup.strictcrlpolicy)
+ {
+ arg[argc++] = "--strictcrlpolicy";
+ }
+
if (_charon_pid)
{
plog("starter_start_charon(): charon already started...");