diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-06 22:38:36 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-06 22:38:36 +0200 |
commit | 33ec56398316af14eec762406f21e649fcc3cbf2 (patch) | |
tree | 02564aa8e99f58d170fd8d844cdc0415a44a4045 /src/protocol_ec25519_fhmqvc.c | |
parent | 7297dd73d5bfa05f829bf44cd8480627d5b387f8 (diff) | |
download | fastd-33ec56398316af14eec762406f21e649fcc3cbf2.tar fastd-33ec56398316af14eec762406f21e649fcc3cbf2.zip |
Limit resolve frequency
Diffstat (limited to 'src/protocol_ec25519_fhmqvc.c')
-rw-r--r-- | src/protocol_ec25519_fhmqvc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol_ec25519_fhmqvc.c b/src/protocol_ec25519_fhmqvc.c index 1772f4b..75360b7 100644 --- a/src/protocol_ec25519_fhmqvc.c +++ b/src/protocol_ec25519_fhmqvc.c @@ -511,7 +511,7 @@ static const fastd_peer_config* match_sender_key(fastd_context *ctx, const fastd return config; } else { /* matches dynamic */ - fastd_resolve_peer(ctx, config); + fastd_resolve_peer(ctx, get_peer(ctx, config)); return NULL; } } |