From: Guus Sliepen Date: Thu, 10 Jun 2021 20:39:40 +0000 (+0200) Subject: Remove a warning about setting the UDP address of mesh->self. X-Git-Url: https://git.meshlink.io/?a=commitdiff_plain;h=d9164d1d24e4100e14b269f170ac5266463f2028;p=meshlink Remove a warning about setting the UDP address of mesh->self. This warning is not useful. --- diff --git a/src/node.c b/src/node.c index 70c29328..977b98b6 100644 --- a/src/node.c +++ b/src/node.c @@ -112,7 +112,6 @@ node_t *lookup_node_udp(meshlink_handle_t *mesh, const sockaddr_t *sa) { void update_node_udp(meshlink_handle_t *mesh, node_t *n, const sockaddr_t *sa) { if(n == mesh->self) { - logger(mesh, MESHLINK_WARNING, "Trying to update UDP address of mesh->self!"); return; }