From 7879164915659c16b96b4bb5c4a6dca13b793f37 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Mon, 4 Aug 2014 03:36:46 +0200 Subject: Move fastd_config_t.peers to fastd_context_t.peer_configs --- src/protocols/ec25519_fhmqvc/handshake.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/protocols') diff --git a/src/protocols/ec25519_fhmqvc/handshake.c b/src/protocols/ec25519_fhmqvc/handshake.c index 9a1c8de..68c37d2 100644 --- a/src/protocols/ec25519_fhmqvc/handshake.c +++ b/src/protocols/ec25519_fhmqvc/handshake.c @@ -486,7 +486,7 @@ static size_t key_count(const unsigned char key[PUBLICKEYBYTES]) { size_t ret = 0; fastd_peer_config_t *p; - for (p = conf.peers; p; p = p->next) { + for (p = ctx.peer_configs; p; p = p->next) { if (!p->protocol_config) continue; -- cgit v1.2.3