usb-atm fixes:
[openwrt.git] / tools / firmware-utils / src / mkzynfw.c
index 8fb3dad..b4462ad 100755 (executable)
@@ -2,7 +2,7 @@
  *  $Id$
  *
  *  Copyright (C) 2007 OpenWrt.org
- *  Copyright (C) 2007 Gabor Juhos <juhosg@freemail.hu>
+ *  Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
  *
  *  This code was based on the information of the ZyXEL's firmware 
  *  image format written by Kolja Waschk, can be found at: 
@@ -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;
                }
This page took 0.022919 seconds and 4 git commands to generate.