I have new e-mail address. Thanks to Kaloz ;)
[openwrt.git] / tools / firmware-utils / src / mkcsysimg.c
index 6487400..a1f9b74 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *  $Id$
  *
- *  Copyright (C) 2007 Gabor Juhos <juhosg@freemail.hu>
+ *  Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
  *
  *  This program was based on the code found in various Linux
  *  source tarballs released by Edimax for it's devices.
@@ -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;
                }
This page took 0.022716 seconds and 4 git commands to generate.