diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2004-06-25 20:25:35 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2004-06-25 20:25:35 +0000 |
commit | 4213c1dc4ca113a27c547ad390fd05f78e947cc4 (patch) | |
tree | bbe8dfdec7c60f9f5fa03764990e132020c69dd2 /sbin/isakmpd/conf.c | |
parent | 7f25b2c327254506ea1c8ca59862ea2c5c8cfdbe (diff) |
Keynote policy checking can now be disabled by "-K" switch and config tag
"Use-Keynote". Default is to use keynote.
ok henning@ ho@
Diffstat (limited to 'sbin/isakmpd/conf.c')
-rw-r--r-- | sbin/isakmpd/conf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/isakmpd/conf.c b/sbin/isakmpd/conf.c index b7d7b6113a2..32af77c05e7 100644 --- a/sbin/isakmpd/conf.c +++ b/sbin/isakmpd/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.70 2004/06/14 13:53:31 hshoexer Exp $ */ +/* $OpenBSD: conf.c,v 1.71 2004/06/25 20:25:34 hshoexer Exp $ */ /* $EOM: conf.c,v 1.48 2000/12/04 02:04:29 angelos Exp $ */ /* @@ -471,6 +471,7 @@ conf_load_defaults(int tr) conf_set(tr, "General", "Retransmits", CONF_DFLT_RETRANSMITS, 0, 1); conf_set(tr, "General", "Exchange-max-time", CONF_DFLT_EXCH_MAX_TIME, 0, 1); + conf_set(tr, "General", "Use-Keynote", CONF_DFLT_USE_KEYNOTE, 0, 1); conf_set(tr, "General", "Policy-file", CONF_DFLT_POLICY_FILE, 0, 1); conf_set(tr, "General", "Pubkey-directory", CONF_DFLT_PUBKEY_DIR, 0, 1); |