aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tftp/main.c
diff options
context:
space:
mode:
authorSimon L. B. Nielsen <simon@FreeBSD.org>2003-10-01 21:01:14 +0000
committerSimon L. B. Nielsen <simon@FreeBSD.org>2003-10-01 21:01:14 +0000
commit891ca8cf3b0492ebde13231cfa3f117663c943c1 (patch)
tree56b5a3c3a092933230471f6aa64b9e950eadd669 /usr.bin/tftp/main.c
parentde27a78acae4c697645244b3f9ddfd5a258df629 (diff)
downloadsrc-891ca8cf3b0492ebde13231cfa3f117663c943c1.tar.gz
src-891ca8cf3b0492ebde13231cfa3f117663c943c1.zip
tftp.1:
- Add the optional port argument to SYNOPSIS. main.c: - Sync usage with the manual page. Approved by: trhodes (main.c part) Obtained from: OpenBSD (jmc) MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=120647
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 76aadd29b0b7..d4fc7c85ff3c 100644
--- a/usr.bin/tftp/main.c
+++ b/usr.bin/tftp/main.c
@@ -258,7 +258,7 @@ setpeer(argc, argv)
argv = margv;
}
if ((argc < 2) || (argc > 3)) {
- printf("usage: %s host-name [port]\n", argv[0]);
+ printf("usage: %s [host [port]]\n", argv[0]);
return;
}
if (argc == 3)
@@ -424,8 +424,8 @@ static void
putusage(s)
char *s;
{
- printf("usage: %s file ... host:target, or\n", s);
- printf(" %s file ... target (when already connected)\n", s);
+ printf("usage: %s file [[host:]remotename]\n", s);
+ printf(" %s file1 file2 ... fileN [[host:]remote-directory]\n", s);
}
/*
@@ -507,8 +507,8 @@ static void
getusage(s)
char *s;
{
- printf("usage: %s host:file host:file ... file, or\n", s);
- printf(" %s file file ... file if connected\n", s);
+ printf("usage: %s [host:]file [localname]\n", s);
+ printf(" %s [host1:]file1 [host2:]file2 ... [hostN:]fileN\n", s);
}
int rexmtval = TIMEOUT;