diff options
Diffstat (limited to 'src/charon/sa')
-rw-r--r-- | src/charon/sa/child_sa.c | 6 | ||||
-rw-r--r-- | src/charon/sa/connect_manager.c | 16 | ||||
-rw-r--r-- | src/charon/sa/ike_sa_id.h | 6 | ||||
-rw-r--r-- | src/charon/sa/keymat.c | 6 |
4 files changed, 17 insertions, 17 deletions
diff --git a/src/charon/sa/child_sa.c b/src/charon/sa/child_sa.c index b30a5c0aa..f2ffdab2f 100644 --- a/src/charon/sa/child_sa.c +++ b/src/charon/sa/child_sa.c @@ -128,9 +128,9 @@ struct private_child_sa_t { ipsec_mode_t mode; /** - * selected proposal - */ - proposal_t *proposal; + * selected proposal + */ + proposal_t *proposal; /** * config used to create this child diff --git a/src/charon/sa/connect_manager.c b/src/charon/sa/connect_manager.c index 8df1824ac..2eebe4cfe 100644 --- a/src/charon/sa/connect_manager.c +++ b/src/charon/sa/connect_manager.c @@ -1059,14 +1059,14 @@ static void queue_triggered_check(private_connect_manager_t *this, check_list_t *checklist, endpoint_pair_t *pair) { DBG2(DBG_IKE, "queueing triggered check for pair '%d'", pair->id); - pair->state = CHECK_WAITING; - checklist->triggered->insert_last(checklist->triggered, pair); - - if (!checklist->sender) - { - /* if the sender is not running we restart it */ - schedule_checks(this, checklist, ME_INTERVAL); - } + pair->state = CHECK_WAITING; + checklist->triggered->insert_last(checklist->triggered, pair); + + if (!checklist->sender) + { + /* if the sender is not running we restart it */ + schedule_checks(this, checklist, ME_INTERVAL); + } } /** diff --git a/src/charon/sa/ike_sa_id.h b/src/charon/sa/ike_sa_id.h index 0e7d7ea45..a833aa9d6 100644 --- a/src/charon/sa/ike_sa_id.h +++ b/src/charon/sa/ike_sa_id.h @@ -70,8 +70,8 @@ struct ike_sa_id_t { * * Two ike_sa_id_t objects are equal if both SPI values and the role matches. * - * @param other ike_sa_id_t object to check if equal - * @return TRUE if given ike_sa_id_t are equal, FALSE otherwise + * @param other ike_sa_id_t object to check if equal + * @return TRUE if given ike_sa_id_t are equal, FALSE otherwise */ bool (*equals) (ike_sa_id_t *this, ike_sa_id_t *other); @@ -81,7 +81,7 @@ struct ike_sa_id_t { * * After calling this function, both objects are equal. * - * @param other ike_sa_id_t object from which values will be taken + * @param other ike_sa_id_t object from which values will be taken */ void (*replace_values) (ike_sa_id_t *this, ike_sa_id_t *other); diff --git a/src/charon/sa/keymat.c b/src/charon/sa/keymat.c index e7224fe52..93f88a6fc 100644 --- a/src/charon/sa/keymat.c +++ b/src/charon/sa/keymat.c @@ -31,9 +31,9 @@ struct private_keymat_t { keymat_t public; /** - * IKE_SA Role, initiator or responder - */ - bool initiator; + * IKE_SA Role, initiator or responder + */ + bool initiator; /** * inbound signer (verify) |