diff options
author | Tobias Brunner <tobias@strongswan.org> | 2014-08-11 18:08:24 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2014-09-12 10:18:13 +0200 |
commit | 8e52dc27333aba0cade1822d7948f96709724adf (patch) | |
tree | 603bbc812886183d7321f7337a117fce40245694 /src | |
parent | ac1b3a6dddaf004a46539d1bb2730f7b21429457 (diff) | |
download | strongswan-8e52dc27333aba0cade1822d7948f96709724adf.tar.bz2 strongswan-8e52dc27333aba0cade1822d7948f96709724adf.tar.xz |
proposal: Fix equals()
Diffstat (limited to 'src')
-rw-r--r-- | src/libcharon/config/proposal.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libcharon/config/proposal.c b/src/libcharon/config/proposal.c index 4d881cd2f..50d3c6f66 100644 --- a/src/libcharon/config/proposal.c +++ b/src/libcharon/config/proposal.c @@ -337,7 +337,7 @@ static bool algo_list_equals(private_proposal_t *this, proposal_t *other, break; } } - if (e2->enumerate(e2, &alg2, ks2)) + if (e2->enumerate(e2, &alg2, &ks2)) { /* other has more algs */ equals = FALSE; @@ -594,7 +594,7 @@ METHOD(proposal_t, destroy, void, } /* - * Describtion in header-file + * Described in header */ proposal_t *proposal_create(protocol_id_t protocol, u_int number) { @@ -787,7 +787,7 @@ static bool proposal_add_supported_ike(private_proposal_t *this, bool aead) } /* - * Describtion in header-file + * Described in header */ proposal_t *proposal_create_default(protocol_id_t protocol) { @@ -826,7 +826,7 @@ proposal_t *proposal_create_default(protocol_id_t protocol) } /* - * Describtion in header-file + * Described in header */ proposal_t *proposal_create_default_aead(protocol_id_t protocol) { @@ -853,7 +853,7 @@ proposal_t *proposal_create_default_aead(protocol_id_t protocol) } /* - * Describtion in header-file + * Described in header */ proposal_t *proposal_create_from_string(protocol_id_t protocol, const char *algs) { |