diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-19 20:16:22 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-19 20:16:22 +0000 |
commit | 6ea7a03abd1c576bd5277bfffb8f07f075407d29 (patch) | |
tree | 443dfa36024edd0887135a4a9dadbceb43fd2d15 | |
parent | f461187ea0a1300f83afb0ec26cc2ab3e9931612 (diff) | |
download | busybox-w32-6ea7a03abd1c576bd5277bfffb8f07f075407d29.tar.gz busybox-w32-6ea7a03abd1c576bd5277bfffb8f07f075407d29.tar.bz2 busybox-w32-6ea7a03abd1c576bd5277bfffb8f07f075407d29.zip |
Bugfix, wastn retrieving last block, patch by Jean-Christophe Dubois
git-svn-id: svn://busybox.net/trunk/busybox@6230 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | networking/tftp.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/networking/tftp.c b/networking/tftp.c index a3808f5bf..378ba2fef 100644 --- a/networking/tftp.c +++ b/networking/tftp.c | |||
@@ -279,8 +279,6 @@ static inline int tftp(const int cmd, const struct hostent *host, | |||
279 | } | 279 | } |
280 | 280 | ||
281 | cp += len; | 281 | cp += len; |
282 | } else if (finished) { | ||
283 | break; | ||
284 | } | 282 | } |
285 | } | 283 | } |
286 | 284 | ||
@@ -306,8 +304,11 @@ static inline int tftp(const int cmd, const struct hostent *host, | |||
306 | } | 304 | } |
307 | 305 | ||
308 | 306 | ||
309 | /* receive packet */ | 307 | if (finished) { |
308 | break; | ||
309 | } | ||
310 | 310 | ||
311 | /* receive packet */ | ||
311 | 312 | ||
312 | memset(&from, 0, sizeof(from)); | 313 | memset(&from, 0, sizeof(from)); |
313 | fromlen = sizeof(from); | 314 | fromlen = sizeof(from); |
@@ -359,7 +360,7 @@ static inline int tftp(const int cmd, const struct hostent *host, | |||
359 | 360 | ||
360 | } while (timeout && (len >= 0)); | 361 | } while (timeout && (len >= 0)); |
361 | 362 | ||
362 | if (len < 0) { | 363 | if ((finished) || (len < 0)) { |
363 | break; | 364 | break; |
364 | } | 365 | } |
365 | 366 | ||