diff options
author | Vess Rebane <vess@riseup.net> | 2023-05-12 20:14:54 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2023-05-12 20:14:54 +0000 |
commit | 462c67a09fefcb408a8bcfc43a847745b28bba3d (patch) | |
tree | a9df3b92bab3d215a37ff44c5e991cbb44402a47 /sys | |
parent | cc7a274d01780313eb7fe952329fa4d4b10d2c05 (diff) |
ftpfs: clarify usage and manpage
Diffstat (limited to 'sys')
-rw-r--r-- | sys/man/4/ftpfs | 2 | ||||
-rw-r--r-- | sys/src/cmd/ip/ftpfs/ftpfs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/man/4/ftpfs b/sys/man/4/ftpfs index 6c9a618bd..a499579eb 100644 --- a/sys/man/4/ftpfs +++ b/sys/man/4/ftpfs @@ -33,7 +33,7 @@ remoteroot .I system .SH DESCRIPTION .I Ftpfs -dials the TCP file transfer protocol (FTP) port, 21, on +dials .I system and mounts itself (see .IR bind (2)) diff --git a/sys/src/cmd/ip/ftpfs/ftpfs.c b/sys/src/cmd/ip/ftpfs/ftpfs.c index 8e4299b8a..e30f3fc47 100644 --- a/sys/src/cmd/ip/ftpfs/ftpfs.c +++ b/sys/src/cmd/ip/ftpfs/ftpfs.c @@ -90,7 +90,7 @@ int docache = 0; void usage(void) { - fprint(2, "ftpfs [-/dqnt] [-a passwd] [-m mountpoint] [-e ext] [-k keyspec] [-o os] [-r root] [net!]address\n"); + fprint(2, "ftpfs [-/dqnt] [-a passwd] [-m mountpoint] [-e ext] [-k keyspec] [-o os] [-r root] address\n"); exits("usage"); } |