aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-11-06 19:41:17 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-11-06 19:41:17 +0300
commitf6c286d79afb970ec6bc01801fb0ab2d8e2a4084 (patch)
tree47f3880e9567a9fae5c7420686eda90b4d99a983
parent148faf72bf58ed05d54010df71286ee462d5b870 (diff)
downloadlibmicrohttpd-f6c286d79afb970ec6bc01801fb0ab2d8e2a4084.tar.gz
libmicrohttpd-f6c286d79afb970ec6bc01801fb0ab2d8e2a4084.zip
tests: fixed copy-paste error in report
-rw-r--r--src/testcurl/test_toolarge.c2
-rw-r--r--src/testcurl/test_tricky.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/testcurl/test_toolarge.c b/src/testcurl/test_toolarge.c
index e2aaabc4..0b4748eb 100644
--- a/src/testcurl/test_toolarge.c
+++ b/src/testcurl/test_toolarge.c
@@ -465,7 +465,7 @@ ahcCheck (void *cls,
465 mhdErrorExitDesc ("'upload_data' is not NULL"); 465 mhdErrorExitDesc ("'upload_data' is not NULL");
466 466
467 if (NULL == upload_data_size) 467 if (NULL == upload_data_size)
468 mhdErrorExitDesc ("'upload_data_size' pointer is not NULL"); 468 mhdErrorExitDesc ("'upload_data_size' pointer is NULL");
469 469
470 if (0 != *upload_data_size) 470 if (0 != *upload_data_size)
471 mhdErrorExitDesc ("'*upload_data_size' value is not zero"); 471 mhdErrorExitDesc ("'*upload_data_size' value is not zero");
diff --git a/src/testcurl/test_tricky.c b/src/testcurl/test_tricky.c
index 039ef009..49b89e84 100644
--- a/src/testcurl/test_tricky.c
+++ b/src/testcurl/test_tricky.c
@@ -393,7 +393,7 @@ ahcCheck (void *cls,
393 mhdErrorExitDesc ("'upload_data' is not NULL"); 393 mhdErrorExitDesc ("'upload_data' is not NULL");
394 394
395 if (NULL == upload_data_size) 395 if (NULL == upload_data_size)
396 mhdErrorExitDesc ("'upload_data_size' pointer is not NULL"); 396 mhdErrorExitDesc ("'upload_data_size' pointer is NULL");
397 397
398 if (0 != *upload_data_size) 398 if (0 != *upload_data_size)
399 mhdErrorExitDesc ("'*upload_data_size' value is not zero"); 399 mhdErrorExitDesc ("'*upload_data_size' value is not zero");