summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-02-02 15:03:28 -0800
committerWolfgang Denk <wd@denx.de>2011-04-13 22:25:07 +0200
commit21076f61c7ec6f562d9b72cc9c713e5bd2236e05 (patch)
treea931f6f03eec52615227670d94cda538c782a019 /net
parentf16b608ae7d0c4611d3a41d2570616a498e64d4c (diff)
downloadblackbird-obmc-uboot-21076f61c7ec6f562d9b72cc9c713e5bd2236e05.tar.gz
blackbird-obmc-uboot-21076f61c7ec6f562d9b72cc9c713e5bd2236e05.zip
Fix bad padding of bootp request packet
This seems to pad to one byte longer than required Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net')
-rw-r--r--net/bootp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bootp.c b/net/bootp.c
index 1a717867d4..87b027e8fa 100644
--- a/net/bootp.c
+++ b/net/bootp.c
@@ -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
OpenPOWER on IntegriCloud