changeset 1302:b770a5c72050

Tweaked the comments to better describe the problem/fix.
author asl
date Sun, 12 Oct 2003 11:53:55 +0000
parents 25b536d4b2bc
children 2d5ff91b40f8
files packages/net/common/current/ChangeLog packages/net/common/current/src/tftp_client.c
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/packages/net/common/current/ChangeLog
+++ b/packages/net/common/current/ChangeLog
@@ -6,9 +6,9 @@ 2003-10-12  Jay Foster  <jay@systech.com
 
 2003-10-09  Eric Doenges <Eric.Doenges@DynaPel.com>
 
-        * src/tftp_client.c: Changed the code so that if the last packet
-	is received out of sequence we don't close the connection but wait
-	for the missing packets.
+        * src/tftp_client.c: Changed the code so that if a packet is
+        received out of sequence we don't close the connection but wait
+        for the missing packets.
  
 2003-10-06  Andrew Lunn  <andrew.lunn@ascom.ch>
 
--- a/packages/net/common/current/src/tftp_client.c
+++ b/packages/net/common/current/src/tftp_client.c
@@ -239,7 +239,7 @@ int tftp_client_get(char *filename,
 		}
 		last_good_block++;
 	      } else {
-                // To prevent an out-of-sequence last packet from
+                // To prevent an out-of-sequence packet from
                 // terminating transmission prematurely, set
                 // actual_len to a full size packet.
 		actual_len = SEGSIZE;