]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/net/bootp.c (parse_dhcp_vendor): Fix double increment.
authorPaulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
Wed, 28 Nov 2012 13:14:20 +0000 (14:14 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 28 Nov 2012 13:14:20 +0000 (14:14 +0100)
ChangeLog
grub-core/net/bootp.c

index caea96de33d6c365caa8f2ee47e7b85dace40783..1759da463536fd90a1464efec1e3a1ee1594f2df 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-11-28  Paulo Flabiano Smorigo  <pfsmorigo@br.ibm.com>
+
+       * grub-core/net/bootp.c (parse_dhcp_vendor): Fix double increment.
+
 2012-10-28  GrĂ©goire Sutre  <gregoire.sutre@gmail.com>
 
        * util/grub.d/10_netbsd.in: Fix tab indentation and make sure
index bc07d535103f67c52a09f7f94f54f625981236b0..f36d4cd34afe59d55a8547ecc1aa0e9d1d00fd2f 100644 (file)
@@ -122,7 +122,7 @@ parse_dhcp_vendor (const char *name, void *vend, int limit, int *mask)
                ptr += 4;
              }
          }
-         break;
+         continue;
        case GRUB_NET_BOOTP_HOSTNAME:
          set_env_limn_ro (name, "hostname", (char *) ptr, taglength);
          break;