diff options
author | attilio <attilio@FreeBSD.org> | 2011-05-31 21:22:44 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2011-05-31 21:22:44 +0000 |
commit | bc4d32e80bd81ea96c4c2544ab36f7e8caa777b7 (patch) | |
tree | c72d5598fc48383e545ddbc1e8438d9245766ca9 /usr.bin/tftp/main.c | |
parent | 27825059cd2a1ad6c708ee2089f7e182c12e84b1 (diff) | |
download | FreeBSD-src-bc4d32e80bd81ea96c4c2544ab36f7e8caa777b7.zip FreeBSD-src-bc4d32e80bd81ea96c4c2544ab36f7e8caa777b7.tar.gz |
MFC
Diffstat (limited to 'usr.bin/tftp/main.c')
-rw-r--r-- | usr.bin/tftp/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tftp/main.c b/usr.bin/tftp/main.c index 989a5ae..e2954c8 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 } }; @@ -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]); |