svn commit: r223135 - head/usr.bin/tftp

Craig Rodrigues rodrigc at FreeBSD.org
Thu Jun 16 02:16:53 UTC 2011


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) {


More information about the svn-src-head mailing list