respecting ipsec.conf cachecrls= option

This commit is contained in:
Martin Willi
2008-04-17 15:01:57 +00:00
parent 58126dd295
commit b360e3933d
10 changed files with 86 additions and 51 deletions
-10
View File
@@ -118,16 +118,6 @@ starter_start_charon (starter_config_t *cfg, bool debug)
{
arg[argc++] = "--use-syslog";
}
if (cfg->setup.cachecrls)
{
arg[argc++] = "--cachecrls";
}
if (cfg->setup.crlcheckinterval > 0)
{
snprintf(buffer1, BUF_LEN, "%u", cfg->setup.crlcheckinterval);
arg[argc++] = "--crlcheckinterval";
arg[argc++] = buffer1;
}
{ /* parse debug string */
char *pos, *level, *buf_pos, type[4];