Date: Thu, 16 Jun 2011 02:16:53 +0000 (UTC) From: Craig Rodrigues <rodrigc@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r223135 - head/usr.bin/tftp Message-ID: <201106160216.p5G2Grq5007993@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rodrigc Date: Thu Jun 16 02:16:53 2011 New Revision: 223135 URL: http://svn.freebsd.org/changeset/base/223135 Log: Specify correct RFC2347 for TFTP options in diagnostic message. Modified: head/usr.bin/tftp/main.c Modified: head/usr.bin/tftp/main.c ============================================================================== --- head/usr.bin/tftp/main.c Thu Jun 16 01:52:42 2011 (r223134) +++ head/usr.bin/tftp/main.c Thu Jun 16 02:16:53 2011 (r223135) @@ -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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201106160216.p5G2Grq5007993>