From: Michael R Sweet Date: Wed, 14 Feb 2024 15:26:07 +0000 (-0500) Subject: Fix typo in workaround. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b0f9778e618f2abc489b8ac54cced0e03e28a83;p=thirdparty%2Fcups.git Fix typo in workaround. --- diff --git a/cups/testhttp.c b/cups/testhttp.c index 6dcdfb8384..77a4272771 100644 --- a/cups/testhttp.c +++ b/cups/testhttp.c @@ -371,7 +371,7 @@ main(int argc, // I - Number of command-line arguments { testEndMessage(true, "ignored because hostname is numeric"); } - else if (strncmp(hostname, "mac-", 4) && isdigit(hostname[4])) + else if (!strncmp(hostname, "mac-", 4) && isdigit(hostname[4])) { testEndMessage(true, "ignored because GitHub Actions macOS runner doesn't resolve its own hostname"); }