Просмотр исходного кода

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>
Simon Glass 14 лет назад
Родитель
Сommit
21076f61c7
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      net/bootp.c

+ 1 - 1
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 */
 	/* Pad to minimal length */
 #ifdef	CONFIG_DHCP_MIN_EXT_LEN
 #ifdef	CONFIG_DHCP_MIN_EXT_LEN
-	while ((e - start) <= CONFIG_DHCP_MIN_EXT_LEN)
+	while ((e - start) < CONFIG_DHCP_MIN_EXT_LEN)
 		*e++ = 0;
 		*e++ = 0;
 #endif
 #endif