remove case sensitivity from the board name checking

SVN-Revision: 8352
This commit is contained in:
Gabor Juhos
2007-08-06 17:38:40 +00:00
parent fe1b8fca48
commit 570cecff14
3 changed files with 3 additions and 3 deletions

View File

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