remove case sensitivity from the board name checking
SVN-Revision: 8352
This commit is contained in:
@@ -325,7 +325,7 @@ find_board(char *model){
|
||||
|
||||
board = NULL;
|
||||
for (tmp = boards; tmp->model != NULL; tmp++){
|
||||
if (strcmp(model, tmp->model) == 0) {
|
||||
if (strcasecmp(model, tmp->model) == 0) {
|
||||
board = tmp;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user