summaryrefslogtreecommitdiffstats
path: root/fuzz/provider.c
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/provider.c')
-rw-r--r--fuzz/provider.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/provider.c b/fuzz/provider.c
index f709dd51e3..e87ababf85 100644
--- a/fuzz/provider.c
+++ b/fuzz/provider.c
@@ -160,7 +160,7 @@ static int read_utf8_string(const uint8_t **buf, size_t *len, char **res)
size_t found_len;
int r;
- found_len = strnlen((const char *) *buf, *len);
+ found_len = OPENSSL_strnlen((const char *) *buf, *len);
if (found_len == *len) {
r = -1;