aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2007-04-12 06:20:42 +0000
committerMartin Willi <martin@strongswan.org>2007-04-12 06:20:42 +0000
commit1dad08b0356b0c9abb20640d043f32e845ab7030 (patch)
tree10674fe8ab2b6d77311339371acce6b33d981d79
parent092958c89d52cfe6c0f86c0d9caec9a47d3cc1f8 (diff)
downloadstrongswan-1dad08b0356b0c9abb20640d043f32e845ab7030.tar.bz2
strongswan-1dad08b0356b0c9abb20640d043f32e845ab7030.tar.xz
fixed DPD delay in peer_cfg
-rw-r--r--src/charon/config/peer_cfg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/config/peer_cfg.c b/src/charon/config/peer_cfg.c
index 453fce555..c5001b2bc 100644
--- a/src/charon/config/peer_cfg.c
+++ b/src/charon/config/peer_cfg.c
@@ -340,7 +340,7 @@ static bool use_reauth(private_peer_cfg_t *this, bool rekey)
*/
static u_int32_t get_dpd_delay(private_peer_cfg_t *this)
{
- return this->dpd_action;
+ return this->dpd_delay;
}
/**