From 3794e551c7db9aa81405f65f7b04a9951c4120b2 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sat, 14 May 2011 11:52:35 +0200 Subject: [PATCH] Fix check for event initialization due to the merge. --- src/protocol_key.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol_key.c b/src/protocol_key.c index ab56ac5a..99861287 100644 --- a/src/protocol_key.c +++ b/src/protocol_key.c @@ -275,7 +275,7 @@ bool ans_key_h(connection_t *c, char *request) { update_node_udp(from, &sa); } - if(from->options & OPTION_PMTU_DISCOVERY && !from->mtuevent) + if(from->options & OPTION_PMTU_DISCOVERY && !event_initialized(&from->mtuevent)) send_mtu_probe(from); return true; -- 2.20.1