diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2011-06-16 02:16:53 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2011-06-16 02:16:53 +0000 |
commit | ce2f24436089bae3547ee960744d48d85ee436ab (patch) | |
tree | 40755d2fccfe84842e43505e513d4e76325a4060 /usr.bin/tftp | |
parent | fd8e41eac7edcaf155fe125da755ee17a117aefb (diff) | |
download | FreeBSD-src-ce2f24436089bae3547ee960744d48d85ee436ab.zip FreeBSD-src-ce2f24436089bae3547ee960744d48d85ee436ab.tar.gz |
Specify correct RFC2347 for TFTP options in diagnostic message.
Diffstat (limited to 'usr.bin/tftp')
-rw-r--r-- | usr.bin/tftp/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tftp/main.c b/usr.bin/tftp/main.c index e2954c8..2bdcf5f 100644 --- a/usr.bin/tftp/main.c +++ b/usr.bin/tftp/main.c @@ -840,8 +840,8 @@ help(int argc, char *argv[]) printf("%-*s\t%s\n", (int)HELPINDENT, c->name, c->help); printf("\n[-] : You shouldn't use these ones anymore.\n"); - printf("[*] : RFC2834 options support required.\n"); - printf("[**] : Non-standard RFC2834 option.\n"); + printf("[*] : RFC2347 options support required.\n"); + printf("[**] : Non-standard RFC2347 option.\n"); return; } while (--argc > 0) { |