1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-13 18:53:52 +02:00

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

@ -728,7 +728,7 @@ find_board(char *model)
ret = NULL;
for (board = boards; board->model != NULL; board++){
if (strcmp(model, board->model) == 0) {
if (strcasecmp(model, board->model) == 0) {
ret = board;
break;
}

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

View File

@ -732,7 +732,7 @@ find_board(char *name)
ret = NULL;
for (board = boards; board->name != NULL; board++){
if (strcmp(name, board->name) == 0) {
if (strcasecmp(name, board->name) == 0) {
ret = board;
break;
}