Commit 86e6cbd6 authored by Richard Levitte's avatar Richard Levitte
Browse files

STORE 'file' scheme loader: DNS name in URI is case insensitive



...  so compare accordingly with "//localhost"

Reviewed-by: default avatarBernd Edlinger <bernd.edlinger@hotmail.de>
(Merged from https://github.com/openssl/openssl/pull/3827)
parent f2da4a49
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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];