aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-09 21:05:40 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-09 21:05:40 +0000
commitd93d5ce33c35565e06ba1cd590d00636d2481ce8 (patch)
tree9489bf3b849b4742f03e49152c5fd222ecbc0bf0
parent50a3525bfbbcedd04287297c6ff45c75f64b871a (diff)
downloadbusybox-w32-d93d5ce33c35565e06ba1cd590d00636d2481ce8.tar.gz
busybox-w32-d93d5ce33c35565e06ba1cd590d00636d2481ce8.tar.bz2
busybox-w32-d93d5ce33c35565e06ba1cd590d00636d2481ce8.zip
Fix a debug message, from Bastian Blank
git-svn-id: svn://busybox.net/trunk/busybox@6141 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--networking/tftp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/tftp.c b/networking/tftp.c
index 1e1105b45..af26d4c71 100644
--- a/networking/tftp.c
+++ b/networking/tftp.c
@@ -407,9 +407,9 @@ static inline int tftp(const int cmd, const struct hostent *host,
407 "blksize"); 407 "blksize");
408 408
409 if (res) { 409 if (res) {
410 int foo = atoi(res); 410 int blksize = atoi(res);
411 411
412 if (tftp_blocksize_check(foo, 412 if (tftp_blocksize_check(blksize,
413 tftp_bufsize - 4)) { 413 tftp_bufsize - 4)) {
414 414
415 if (cmd_put) { 415 if (cmd_put) {
@@ -419,7 +419,7 @@ static inline int tftp(const int cmd, const struct hostent *host,
419 opcode = TFTP_ACK; 419 opcode = TFTP_ACK;
420 } 420 }
421#ifdef CONFIG_FEATURE_TFTP_DEBUG 421#ifdef CONFIG_FEATURE_TFTP_DEBUG
422 printf("using blksize %u\n"); 422 printf("using blksize %u\n", blksize);
423#endif 423#endif
424 tftp_bufsize = foo + 4; 424 tftp_bufsize = foo + 4;
425 block_nr = 0; 425 block_nr = 0;