aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/test_md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/test_md5.c')
-rw-r--r--src/microhttpd/test_md5.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/microhttpd/test_md5.c b/src/microhttpd/test_md5.c
index e6addab3..e3bb0ce3 100644
--- a/src/microhttpd/test_md5.c
+++ b/src/microhttpd/test_md5.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2019-2022 Evgeny Grin (Karlson2k) 3 Copyright (C) 2019-2023 Evgeny Grin (Karlson2k)
4 4
5 This test tool is free software; you can redistribute it and/or 5 This test tool is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as 6 modify it under the terms of the GNU General Public License as
@@ -335,7 +335,7 @@ test1_str (void)
335 exit (99); 335 exit (99);
336 } 336 }
337#endif 337#endif
338 num_failed += check_result (__FUNCTION__, i, digest, 338 num_failed += check_result (MHD_FUNC_, i, digest,
339 data_units1[i].digest); 339 data_units1[i].digest);
340 } 340 }
341 MHD_MD5_deinit (&ctx); 341 MHD_MD5_deinit (&ctx);
@@ -365,7 +365,7 @@ test1_bin (void)
365 exit (99); 365 exit (99);
366 } 366 }
367#endif 367#endif
368 num_failed += check_result (__FUNCTION__, i, digest, 368 num_failed += check_result (MHD_FUNC_, i, digest,
369 data_units2[i].digest); 369 data_units2[i].digest);
370 } 370 }
371 MHD_MD5_deinit (&ctx); 371 MHD_MD5_deinit (&ctx);
@@ -402,7 +402,7 @@ test2_str (void)
402 exit (99); 402 exit (99);
403 } 403 }
404#endif 404#endif
405 num_failed += check_result (__FUNCTION__, i, digest, 405 num_failed += check_result (MHD_FUNC_, i, digest,
406 data_units1[i].digest); 406 data_units1[i].digest);
407 } 407 }
408 MHD_MD5_deinit (&ctx); 408 MHD_MD5_deinit (&ctx);
@@ -436,7 +436,7 @@ test2_bin (void)
436 exit (99); 436 exit (99);
437 } 437 }
438#endif 438#endif
439 num_failed += check_result (__FUNCTION__, i, digest, 439 num_failed += check_result (MHD_FUNC_, i, digest,
440 data_units2[i].digest); 440 data_units2[i].digest);
441 } 441 }
442 MHD_MD5_deinit (&ctx); 442 MHD_MD5_deinit (&ctx);
@@ -485,7 +485,7 @@ test_unaligned (void)
485 exit (99); 485 exit (99);
486 } 486 }
487#endif 487#endif
488 num_failed += check_result (__FUNCTION__, MAX_OFFSET - offset, 488 num_failed += check_result (MHD_FUNC_, MAX_OFFSET - offset,
489 unaligned_digest, tdata->digest); 489 unaligned_digest, tdata->digest);
490 } 490 }
491 MHD_MD5_deinit (&ctx); 491 MHD_MD5_deinit (&ctx);