Missing commas added.

This commit is contained in:
Tobias Brunner
2009-09-02 17:29:44 +02:00
parent 8fb4edc4ff
commit 5293b02945
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
}
};
+1 -1
View File
@@ -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
}
};