Set-but-not-used variable removed.
+2010-10-17 Szymon Janc <szymon@janc.net.pl>
+
+ * grub-core/normal/auth.c (grub_auth_check_authentication):
+ Set-but-not-used variable removed.
+
2010-10-17 Vladimir Serbinenko <phcoder@gmail.com>
* docs/grub.texi (GNU/Linux): Document APM unavailability with
{
char login[1024];
struct grub_auth_user *cur = NULL;
- grub_err_t err;
static unsigned long punishment_delay = 1;
char entered[GRUB_AUTH_MAX_PASSLEN];
struct grub_auth_user *user;
if (!cur || ! cur->callback)
goto access_denied;
- err = cur->callback (login, entered, cur->arg);
+ cur->callback (login, entered, cur->arg);
if (is_authenticated (userlist))
{
punishment_delay = 1;