From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Sat, 9 Jul 2022 08:58:43 +0000 (+0100) Subject: Quieten a debug message. X-Git-Tag: 1.2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c01b4cd6ae6fad4188eb35cf8e45a9d956901771;p=thirdparty%2Fnqptp.git Quieten a debug message. --- diff --git a/nqptp-utilities.c b/nqptp-utilities.c index 394c569..d371aa2 100644 --- a/nqptp-utilities.c +++ b/nqptp-utilities.c @@ -94,8 +94,8 @@ void open_sockets_at_port(uint16_t port, sockets_open_bundle *sockets_open_stuff p->ai_family == AF_INET6 ? "IPv6" : "IPv4", port, strerror(errno)); } else { - debug(1, "socket %d is listening on %s port %d.", fd, - p->ai_family == AF_INET6 ? "IPv6" : "IPv4", port); + // debug(1, "socket %d is listening on %s port %d.", fd, + // p->ai_family == AF_INET6 ? "IPv6" : "IPv4", port); sockets_open_stuff->sockets[sockets_open_stuff->sockets_open].number = fd; sockets_open_stuff->sockets[sockets_open_stuff->sockets_open].port = port; sockets_open_stuff->sockets[sockets_open_stuff->sockets_open].family = p->ai_family;