summaryrefslogtreecommitdiff
path: root/toxcore
diff options
context:
space:
mode:
Diffstat (limited to 'toxcore')
-rw-r--r--toxcore/network.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/toxcore/network.c b/toxcore/network.c
index d6d5bfd4..da51fdc3 100644
--- a/toxcore/network.c
+++ b/toxcore/network.c
@@ -871,8 +871,13 @@ Networking_Core *new_networking_ex(const Logger *log, IP ip, uint16_t port_from,
871 871
872 int neterror = net_error(); 872 int neterror = net_error();
873 const char *strerror = net_new_strerror(neterror); 873 const char *strerror = net_new_strerror(neterror);
874 LOGGER_DEBUG(log, res < 0 ? "Failed to activate local multicast membership. (%d, %s)" : 874
875 "Local multicast group FF02::1 joined successfully. (%d, %s)", neterror, strerror); 875 if (res < 0) {
876 LOGGER_DEBUG(log, "Failed to activate local multicast membership. (%d, %s)", neterror, strerror);
877 } else {
878 LOGGER_DEBUG(log, "Local multicast group FF02::1 joined successfully. (%d, %s)", neterror, strerror);
879 }
880
876 net_kill_strerror(strerror); 881 net_kill_strerror(strerror);
877 } 882 }
878 883