]> git.proxmox.com Git - grub2.git/commitdiff
* grub-core/normal/auth.c (grub_auth_check_authentication):
authorSzymon Janc <szymon@janc.net.pl>
Sun, 17 Oct 2010 13:41:54 +0000 (15:41 +0200)
committerSzymon Janc <szymon@janc.net.pl>
Sun, 17 Oct 2010 13:41:54 +0000 (15:41 +0200)
Set-but-not-used variable removed.

ChangeLog
grub-core/normal/auth.c

index ddebabefcd13e4f0739f3f1fdd68862660989f01..0f75bc762768b5ff10677ac04fc3a5c1d3b4c34c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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
index 459d4cdbd52c12b1564adb47895388c7dcae5466..e5d187f0ee68951404d35b044f8319812a4dce53 100644 (file)
@@ -201,7 +201,6 @@ grub_auth_check_authentication (const char *userlist)
 {
   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;
@@ -233,7 +232,7 @@ grub_auth_check_authentication (const char *userlist)
   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;