Deleted Added
full compact
46c46
< __FBSDID("$FreeBSD: head/libexec/tftpd/tftpd.c 241848 2012-10-22 03:07:05Z eadler $");
---
> __FBSDID("$FreeBSD: head/libexec/tftpd/tftpd.c 246139 2013-01-31 00:02:36Z marius $");
67a68
> #include <stdint.h>
802,803c803,804
< tftp_log(LOG_INFO, "Sent %d bytes in %d seconds",
< ts.amount, time(NULL) - now);
---
> tftp_log(LOG_INFO, "Sent %jd bytes in %jd seconds",
> (intmax_t)ts.amount, (intmax_t)time(NULL) - now);
835,836c836,837
< "Download of %d bytes in %d blocks completed after %0.1f seconds\n",
< ts.amount, block, f);
---
> "Download of %jd bytes in %d blocks completed after %0.1f seconds\n",
> (intmax_t)ts.amount, block, f);