Deleted Added
full compact
27c27
< __FBSDID("$FreeBSD: head/libexec/tftpd/tftp-options.c 213099 2010-09-24 10:40:17Z marius $");
---
> __FBSDID("$FreeBSD: head/libexec/tftpd/tftp-options.c 246139 2013-01-31 00:02:36Z marius $");
101a102
> int to;
106c107
< int to = atoi(options[OPT_TIMEOUT].o_request);
---
> to = atoi(options[OPT_TIMEOUT].o_request);
110,111c111,112
< "Should be between %d and %d, received %s",
< TIMEOUT_MIN, TIMEOUT_MAX);
---
> "Should be between %d and %d, received %d",
> TIMEOUT_MIN, TIMEOUT_MAX, to);
198c199
< "%d bytes.\n", size, maxdgram);
---
> "%ld bytes.\n", size, maxdgram);
205c206
< "%d bytes.\n", size, maxdgram);
---
> "%ld bytes.\n", size, maxdgram);
260c261
< "sysctl limits it to %d bytes.\n", size, maxdgram);
---
> "sysctl limits it to %ld bytes.\n", size, maxdgram);