Add AG241 code pattern (fixes #1089)
[openwrt-10.03/.git] / tools / firmware-utils / src / mkmylofw.c
index 6e3c1b30da900d44a6d4e6e7d4f6dad8faf3fbd0..7a69f6ef5350dfa2dc3a884d39f9fbced4d4c3db 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *  $Id$
  *
- *  Copyright (C) 2006,2007 Gabor Juhos <juhosg@freemail.hu>
+ *  Copyright (C) 2006,2007 Gabor Juhos <juhosg at openwrt.org>
  *
  *  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;
                }