Import of grid models: Support mix of lower and upper case letters in file name

* #9529 libecl: Allow mix of upper and lower case in file names
This commit is contained in:
Magne Sjaastad 2022-12-16 07:00:45 +01:00 committed by GitHub
parent 16239cd80c
commit 4e51516a96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -355,7 +355,11 @@ static bool valid_base(const char * input_base, bool * upper_case) {
if (upper_case)
*upper_case = upper;
return !(lower && upper);
// Disable checking of mixed upper and lower case
// https://github.com/OPM/ResInsight/issues/9529
return true;
}