diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-02 14:34:01 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-02 14:34:01 +0100 |
commit | 20a95ef2731ce21acfe5c1ba97b40001217b0216 (patch) | |
tree | a41ed017d615a42771113fc9d7ee3df67652620f /src/protocols | |
parent | 7a3c8bee42879add84a143ff98f28cbd0251dc7b (diff) | |
download | fastd-20a95ef2731ce21acfe5c1ba97b40001217b0216.tar fastd-20a95ef2731ce21acfe5c1ba97b40001217b0216.zip |
Convert aes128-gcm into a generic gcm method
Diffstat (limited to 'src/protocols')
-rw-r--r-- | src/protocols/ec25519_fhmqvc/handshake.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocols/ec25519_fhmqvc/handshake.c b/src/protocols/ec25519_fhmqvc/handshake.c index cb89462..909d011 100644 --- a/src/protocols/ec25519_fhmqvc/handshake.c +++ b/src/protocols/ec25519_fhmqvc/handshake.c @@ -126,7 +126,7 @@ static bool establish(fastd_context_t *ctx, fastd_peer_t *peer, const char *meth return false; } - const fastd_method_t *method = fastd_method_get_by_name(ctx, method_name); + const fastd_method_t *method = fastd_method_get_by_name(method_name); if (!salt && !method->session_init_compat) { pr_warn(ctx, "can't establish session with %P[%I] (method without compat support)"); return false; |