summaryrefslogtreecommitdiffstats
path: root/usr.bin/tftp/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/tftp/main.c')
-rw-r--r--usr.bin/tftp/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/tftp/main.c b/usr.bin/tftp/main.c
index 989a5ae..2bdcf5f 100644
--- a/usr.bin/tftp/main.c
+++ b/usr.bin/tftp/main.c
@@ -155,7 +155,7 @@ static struct cmd cmdtab[] = {
{ "options", setoptions,
"enable or disable RFC2347 style options" },
{ "help", help, "print help information" },
- { "packetdrop", setpacketdrop, "artifical packetloss feature" },
+ { "packetdrop", setpacketdrop, "artificial packetloss feature" },
{ "?", help, "print help information" },
{ NULL, NULL, NULL }
};
@@ -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) {
@@ -955,7 +955,7 @@ setblocksize(int argc, char *argv[])
if (!options_rfc_enabled)
printf("RFC2347 style options are not enabled "
- "(but proceding anyway)\n");
+ "(but proceeding anyway)\n");
if (argc != 1) {
int size = atoi(argv[1]);
@@ -993,7 +993,7 @@ setblocksize2(int argc, char *argv[])
if (!options_rfc_enabled || !options_extra_enabled)
printf(
"RFC2347 style or non-RFC defined options are not enabled "
- "(but proceding anyway)\n");
+ "(but proceeding anyway)\n");
if (argc != 1) {
int size = atoi(argv[1]);
OpenPOWER on IntegriCloud