aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2009-09-02 16:12:52 +0200
committerTobias Brunner <tobias@strongswan.org>2009-09-02 17:29:44 +0200
commit5293b029455a81ca1e3146e5865a2dc13ec07dc6 (patch)
tree80573fe5553c0f2173b5b4f8233e39c57d8b8cc5 /src
parent8fb4edc4ff59fca5dba590f567ffa559bf28522e (diff)
downloadstrongswan-5293b029455a81ca1e3146e5865a2dc13ec07dc6.tar.bz2
strongswan-5293b029455a81ca1e3146e5865a2dc13ec07dc6.tar.xz
Missing commas added.
Diffstat (limited to 'src')
-rw-r--r--src/charon/plugins/medcli/medcli_config.c2
-rw-r--r--src/charon/plugins/uci/uci_config.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/plugins/medcli/medcli_config.c b/src/charon/plugins/medcli/medcli_config.c
index f96f61c28..9d3998757 100644
--- a/src/charon/plugins/medcli/medcli_config.c
+++ b/src/charon/plugins/medcli/medcli_config.c
@@ -226,7 +226,7 @@ static bool peer_enumerator_enumerate(peer_enumerator_t *this, peer_cfg_t **cfg)
lifetime_cfg_t lifetime = {
.time = {
.life = this->rekey * 60 + this->rekey,
- .rekey = this->rekey
+ .rekey = this->rekey,
.jitter = this->rekey
}
};
diff --git a/src/charon/plugins/uci/uci_config.c b/src/charon/plugins/uci/uci_config.c
index e2b0b294d..e81e49af7 100644
--- a/src/charon/plugins/uci/uci_config.c
+++ b/src/charon/plugins/uci/uci_config.c
@@ -147,7 +147,7 @@ static bool peer_enumerator_enumerate(peer_enumerator_t *this, peer_cfg_t **cfg)
lifetime_cfg_t lifetime = {
.time = {
.life = create_rekey(esp_rekey) + 300,
- .rekey = create_rekey(esp_rekey)
+ .rekey = create_rekey(esp_rekey),
.jitter = 300
}
};