summaryrefslogtreecommitdiffstats
path: root/test/helpers/ssl_test_ctx.c
diff options
context:
space:
mode:
authorDmitry Belyavskiy <beldmit@gmail.com>2022-04-12 12:30:08 +0200
committerDmitry Belyavskiy <beldmit@gmail.com>2022-04-21 17:12:32 +0200
commit2c31d942af28a20e87979cbc76c3dd8d162c1a9c (patch)
treea7927f89d19ef4c9604eb80fbefc4fa1ac2d4734 /test/helpers/ssl_test_ctx.c
parenta8e4ddc6d15b6e6b308428753bc22b12422adacf (diff)
str[n]casecmp => OPENSSL_strncasecmp
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18103)
Diffstat (limited to 'test/helpers/ssl_test_ctx.c')
-rw-r--r--test/helpers/ssl_test_ctx.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/helpers/ssl_test_ctx.c b/test/helpers/ssl_test_ctx.c
index 1374b04cf0..7236ffd4a6 100644
--- a/test/helpers/ssl_test_ctx.c
+++ b/test/helpers/ssl_test_ctx.c
@@ -16,21 +16,17 @@
#include "ssl_test_ctx.h"
#include "../testutil.h"
-#ifdef OPENSSL_SYS_WINDOWS
-# define strcasecmp _stricmp
-#endif
-
static const int default_app_data_size = 256;
/* Default set to be as small as possible to exercise fragmentation. */
static const int default_max_fragment_size = 512;
static int parse_boolean(const char *value, int *result)
{
- if (strcasecmp(value, "Yes") == 0) {
+ if (OPENSSL_strcasecmp(value, "Yes") == 0) {
*result = 1;
return 1;
}
- else if (strcasecmp(value, "No") == 0) {
+ else if (OPENSSL_strcasecmp(value, "No") == 0) {
*result = 0;
return 1;
}