diff options
Diffstat (limited to 'src/testcurl/test_digestauth_sha256.c')
-rw-r--r-- | src/testcurl/test_digestauth_sha256.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testcurl/test_digestauth_sha256.c b/src/testcurl/test_digestauth_sha256.c index dfaf1ec8..ffa1f4c7 100644 --- a/src/testcurl/test_digestauth_sha256.c +++ b/src/testcurl/test_digestauth_sha256.c | |||
@@ -302,6 +302,15 @@ main (int argc, char *const *argv) | |||
302 | unsigned int errorCount = 0; | 302 | unsigned int errorCount = 0; |
303 | curl_version_info_data *d = curl_version_info (CURLVERSION_NOW); | 303 | curl_version_info_data *d = curl_version_info (CURLVERSION_NOW); |
304 | (void) argc; (void) argv; /* Unused. Silent compiler warning. */ | 304 | (void) argc; (void) argv; /* Unused. Silent compiler warning. */ |
305 | #if (LIBCURL_VERSION_MAJOR == 7) && (LIBCURL_VERSION_MINOR == 62) | ||
306 | if (1) | ||
307 | { | ||
308 | fprintf (stderr, "libcurl version 7.62.x has bug in processing" | ||
309 | "URI with GET argements for Digest Auth.\n"); | ||
310 | fprintf (stderr, "This test cannot be performed.\n"); | ||
311 | exit (77); | ||
312 | } | ||
313 | #endif /* libcurl version 7.62.x */ | ||
305 | 314 | ||
306 | #ifdef CURL_VERSION_SSPI | 315 | #ifdef CURL_VERSION_SSPI |
307 | if (0 != (d->features & CURL_VERSION_SSPI)) | 316 | if (0 != (d->features & CURL_VERSION_SSPI)) |