aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-12-26 19:14:46 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-12-27 16:20:19 +0300
commitf927a8c363ca2faaea5e81e8bb2de89ec8de9650 (patch)
treef4cdfd79673a346b03d3974f57323e7c335bafe6
parenta5504e361443ae54a63dcf42b83b4648032f4e51 (diff)
downloadlibmicrohttpd-f927a8c363ca2faaea5e81e8bb2de89ec8de9650.tar.gz
libmicrohttpd-f927a8c363ca2faaea5e81e8bb2de89ec8de9650.zip
test_digestauth2: fixed test report strings
-rw-r--r--src/testcurl/test_digestauth2.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/testcurl/test_digestauth2.c b/src/testcurl/test_digestauth2.c
index a1a2a700..9940d17c 100644
--- a/src/testcurl/test_digestauth2.c
+++ b/src/testcurl/test_digestauth2.c
@@ -1520,7 +1520,7 @@ main (int argc, char *const *argv)
1520 if ((CURL_VERSION_BITS (7,63,0) > curl_info->version_num) && 1520 if ((CURL_VERSION_BITS (7,63,0) > curl_info->version_num) &&
1521 (CURL_VERSION_BITS (7,62,0) <= curl_info->version_num) ) 1521 (CURL_VERSION_BITS (7,62,0) <= curl_info->version_num) )
1522 { 1522 {
1523 fprintf (stderr, "libcurl version 7.62.x has bug in processing" 1523 fprintf (stderr, "libcurl version 7.62.x has bug in processing "
1524 "URI with GET arguments for Digest Auth.\n"); 1524 "URI with GET arguments for Digest Auth.\n");
1525 fprintf (stderr, "This test with libcurl %u.%u.%u cannot be performed.\n", 1525 fprintf (stderr, "This test with libcurl %u.%u.%u cannot be performed.\n",
1526 0xFF & (curl_info->version_num >> 16), 1526 0xFF & (curl_info->version_num >> 16),
@@ -1552,9 +1552,9 @@ main (int argc, char *const *argv)
1552 } 1552 }
1553 else if (CURL_VERSION_BITS (7,81,0) > curl_info->version_num) 1553 else if (CURL_VERSION_BITS (7,81,0) > curl_info->version_num)
1554 { 1554 {
1555 fprintf (stderr, "Required libcurl version 7.81.0 at least" 1555 fprintf (stderr, "Required libcurl at least version 7.81.0 "
1556 " to run this test with userhash.\n"); 1556 "to run this test with userhash.\n");
1557 fprintf (stderr, "This libcurl version %u.%u.%u has broken digest" 1557 fprintf (stderr, "This libcurl version %u.%u.%u has broken digest "
1558 "calculation when userhash is used.\n", 1558 "calculation when userhash is used.\n",
1559 0xFF & (curl_info->version_num >> 16), 1559 0xFF & (curl_info->version_num >> 16),
1560 0xFF & (curl_info->version_num >> 8), 1560 0xFF & (curl_info->version_num >> 8),
@@ -1576,8 +1576,8 @@ main (int argc, char *const *argv)
1576 } 1576 }
1577 else if (CURL_VERSION_BITS (7,57,0) > curl_info->version_num) 1577 else if (CURL_VERSION_BITS (7,57,0) > curl_info->version_num)
1578 { 1578 {
1579 fprintf (stderr, "Required libcurl version 7.57.0 at least" 1579 fprintf (stderr, "Required libcurl at least version 7.57.0 "
1580 " to run this test with SHA-256.\n"); 1580 "to run this test with SHA-256.\n");
1581 fprintf (stderr, "This libcurl version %u.%u.%u " 1581 fprintf (stderr, "This libcurl version %u.%u.%u "
1582 "does not support SHA-256.\n", 1582 "does not support SHA-256.\n",
1583 0xFF & (curl_info->version_num >> 16), 1583 0xFF & (curl_info->version_num >> 16),