Reduce pointer indirection for global list_t variables
[tinc] / src / protocol_key.c
index 29fe509..b69d5ad 100644 (file)
@@ -39,7 +39,7 @@ void send_key_changed(void) {
 
        /* Immediately send new keys to directly connected nodes to keep UDP mappings alive */
 
-       for list_each(connection_t, c, connection_list) {
+       for list_each(connection_t, c, &connection_list) {
                if(c->edge && c->node && c->node->status.reachable && !c->node->status.sptps) {
                        send_ans_key(c->node);
                }