X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/f69503b99e9a1b377bf50bf94c800cbdaf021cf2..f9d0242a8009a8c284028cf55ee40ef681535582:/tools/firmware-utils/src/mkmylofw.c diff --git a/tools/firmware-utils/src/mkmylofw.c b/tools/firmware-utils/src/mkmylofw.c index 6e3c1b30d..7a69f6ef5 100644 --- a/tools/firmware-utils/src/mkmylofw.c +++ b/tools/firmware-utils/src/mkmylofw.c @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2006,2007 Gabor Juhos + * Copyright (C) 2006,2007 Gabor Juhos * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -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; }