1
1

Merge pull request #7269 from hppritcha/topic/pr7238_to_v4.0.x

mtl/ofi: ignore case when comparing provider names
Этот коммит содержится в:
Geoff Paulsen 2020-01-03 13:36:57 -06:00 коммит произвёл GitHub
родитель 6a739f8357 47c435e531
Коммит e561f2aa69
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

Просмотреть файл

@ -293,7 +293,7 @@ is_in_list(char **list, char *item)
}
while (NULL != list[i]) {
if (0 == strncmp(item, list[i], strlen(list[i]))) {
if (0 == strncasecmp(item, list[i], strlen(list[i]))) {
return 1;
} else {
i++;