]> git.ipfire.org Git - thirdparty/mtr.git/commitdiff
Added parentheses
authorRogier Wolff <R.E.Wolff@BitWizard.nl>
Wed, 17 Jul 2019 21:22:39 +0000 (23:22 +0200)
committerRogier Wolff <R.E.Wolff@BitWizard.nl>
Wed, 17 Jul 2019 21:22:39 +0000 (23:22 +0200)
packet/probe_unix.c

index ac630c7a8c50459a963011c25d72909ec2f7eb19..3691e662bc0d5e6c323ee571e430942561ab870b 100644 (file)
@@ -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
         }