From: Rogier Wolff Date: Wed, 17 Jul 2019 21:22:39 +0000 (+0200) Subject: Added parentheses X-Git-Tag: v0.93~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=facd2247902680269379342d050ad7987977fc5d;p=thirdparty%2Fmtr.git Added parentheses --- diff --git a/packet/probe_unix.c b/packet/probe_unix.c index ac630c7..3691e66 100644 --- a/packet/probe_unix.c +++ b/packet/probe_unix.c @@ -584,7 +584,7 @@ void send_probe( if ((param->protocol != IPPROTO_TCP) && (param->protocol != IPPROTO_SCTP)) break; // no retry if not TCP/SCTP - if (errno != EADDRINUSE && errno != EADDRNOTAVAIL) { + if ((errno != EADDRINUSE) && (errno != EADDRNOTAVAIL)) { break; // no retry }