Fix bad padding of bootp request packet
authorSimon Glass <sjg@chromium.org>
Wed, 2 Feb 2011 23:03:28 +0000 (15:03 -0800)
committerWolfgang Denk <wd@denx.de>
Wed, 13 Apr 2011 20:25:07 +0000 (22:25 +0200)
This seems to pad to one byte longer than required

Signed-off-by: Simon Glass <sjg@chromium.org>
net/bootp.c

index 1a717867d48885b479050909b43d1cba0b372fe7..87b027e8fa65b03e126992a3a44971e7842c24ba 100644 (file)
@@ -464,7 +464,7 @@ static int DhcpExtended (u8 * e, int message_type, IPaddr_t ServerID, IPaddr_t R
 
        /* Pad to minimal length */
 #ifdef CONFIG_DHCP_MIN_EXT_LEN
-       while ((e - start) <= CONFIG_DHCP_MIN_EXT_LEN)
+       while ((e - start) < CONFIG_DHCP_MIN_EXT_LEN)
                *e++ = 0;
 #endif