Compilation error fixed

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2009-11-15 23:42:11 +01:00
parent 228734ab02
commit 53eb42a6fa
2 changed files with 4 additions and 3 deletions

View file

@ -164,7 +164,7 @@ grub_auth_check_authentication (const char *userlist)
auto int hook (grub_list_t item);
int hook (grub_list_t item)
{
if (grub_auth_strcmp (login, ((struct grub_auth_user *) item)->name) == 0)
if (grub_strcmp (login, ((struct grub_auth_user *) item)->name) == 0)
cur = (struct grub_auth_user *) item;
return 0;
}