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

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

Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
(Merged from https://github.com/openssl/openssl/pull/3827)
This commit is contained in:
Richard Levitte 2017-07-02 11:54:40 +02:00
parent f2da4a4917
commit 86e6cbd643

View File

@ -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];