Merge pull request #7269 from hppritcha/topic/pr7238_to_v4.0.x
mtl/ofi: ignore case when comparing provider names
Этот коммит содержится в:
Коммит
e561f2aa69
@ -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++;
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user