diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2021-10-17 13:22:59 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2021-10-17 13:22:59 +0300 |
commit | cb2d42d0afb29e7682c6d12cdbf7c731f4118c6f (patch) | |
tree | aba83328fd3d6cbfe8aaa7feee4b2a018ba4a729 | |
parent | d7786168efa7b2484a01bb30b6eec6339f6058cd (diff) | |
download | libmicrohttpd-cb2d42d0afb29e7682c6d12cdbf7c731f4118c6f.tar.gz libmicrohttpd-cb2d42d0afb29e7682c6d12cdbf7c731f4118c6f.zip |
test_tricky: fixed copy-paste errors
-rw-r--r-- | src/testcurl/test_tricky.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testcurl/test_tricky.c b/src/testcurl/test_tricky.c index 72b7485e..caba8aae 100644 --- a/src/testcurl/test_tricky.c +++ b/src/testcurl/test_tricky.c | |||
@@ -809,7 +809,7 @@ performTestQueries (struct MHD_Daemon *d, int d_port, | |||
809 | } | 809 | } |
810 | 810 | ||
811 | #else | 811 | #else |
812 | fprintf ("This test requires libcurl version 7.62.0 or newer.\n"); | 812 | fprintf (stderr, "This test requires libcurl version 7.62.0 or newer.\n"); |
813 | abort (); | 813 | abort (); |
814 | #endif /* CURL_AT_LEAST_VERSION(7, 62, 0) */ | 814 | #endif /* CURL_AT_LEAST_VERSION(7, 62, 0) */ |
815 | } | 815 | } |
@@ -1068,7 +1068,7 @@ main (int argc, char *const *argv) | |||
1068 | #if ! CURL_AT_LEAST_VERSION (7, 62, 0) | 1068 | #if ! CURL_AT_LEAST_VERSION (7, 62, 0) |
1069 | if (tricky_url) | 1069 | if (tricky_url) |
1070 | { | 1070 | { |
1071 | fprintf ("This test requires libcurl version 7.62.0 or newer.\n"); | 1071 | fprintf (stderr, "This test requires libcurl version 7.62.0 or newer.\n"); |
1072 | return 77; | 1072 | return 77; |
1073 | } | 1073 | } |
1074 | #endif /* ! CURL_AT_LEAST_VERSION(7, 62, 0) */ | 1074 | #endif /* ! CURL_AT_LEAST_VERSION(7, 62, 0) */ |