diff --git a/crypto/store/loader_file.c b/crypto/store/loader_file.c index 2b0f213df0..ebcad03ead 100644 --- a/crypto/store/loader_file.c +++ b/crypto/store/loader_file.c @@ -677,7 +677,7 @@ static OSSL_STORE_LOADER_CTX *file_open(const OSSL_STORE_LOADER *loader, const char *path = NULL; if (strncasecmp(uri, "file:", 5) == 0) { - if (strncmp(&uri[5], "//localhost/", 12) == 0) { + if (strncasecmp(&uri[5], "//localhost/", 12) == 0) { path = &uri[16]; } else if (strncmp(&uri[5], "///", 3) == 0) { path = &uri[7];