aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/tftp/tftp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tftp/tftp.c b/usr.bin/tftp/tftp.c
index c6e111805977..f0c01039d982 100644
--- a/usr.bin/tftp/tftp.c
+++ b/usr.bin/tftp/tftp.c
@@ -75,7 +75,6 @@ xmitfile(int peer, char *port, int fd, char *name, char *mode)
struct tftphdr *rp;
int n, i;
uint16_t block;
- uint32_t amount;
struct sockaddr_storage serv; /* valid server port number */
char recvbuffer[MAXPKTSIZE];
struct tftp_stats tftp_stats;
@@ -162,7 +161,7 @@ xmitfile(int peer, char *port, int fd, char *name, char *mode)
tftp_send(peer, &block, &tftp_stats);
read_close();
- if (amount > 0)
+ if (tftp_stats.amount > 0)
printstats("Sent", verbose, &tftp_stats);
txrx_error = 1;
@@ -243,8 +242,6 @@ recvfile(int peer, char *port, int fd, char *name, char *mode)
return;
}
- stats_init(&tftp_stats);
-
/*
* If the first packet is an OACK packet instead of an DATA packet,
* handle it different.