* grub-core/fs/fshelp.c (grub_fshelp_find_file): Use grub_strcasecmp

rather than a hack for grub_strncasemap.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-01-14 11:46:13 +01:00
parent 280d9d3e3e
commit 8ee1101a97
2 changed files with 19 additions and 1 deletions

View file

@ -84,7 +84,7 @@ grub_fshelp_find_file (const char *path, grub_fshelp_node_t rootnode,
if (filetype == GRUB_FSHELP_UNKNOWN ||
(grub_strcmp (name, filename) &&
(! (filetype & GRUB_FSHELP_CASE_INSENSITIVE) ||
grub_strncasecmp (name, filename, GRUB_LONG_MAX))))
grub_strcasecmp (name, filename))))
{
grub_free (node);
return 0;