diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-12-01 05:27:23 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-12-01 05:27:23 +0000 |
commit | ff5459f380ebde3e0a09a6ad434406ffa0242aab (patch) | |
tree | 14e0352b684aeddc4fb176dc931e673f9ea1c3e3 /usr.bin | |
parent | 377ce1a1a28bef4c797c8205b5bd35dacc258855 (diff) |
Correct the connecthelp info. This is really ftp, not tftp.
From NetBSD (fvdl).
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ftp/cmdtab.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/cmdtab.c b/usr.bin/ftp/cmdtab.c index 54e5dc273b7..669f364ac6e 100644 --- a/usr.bin/ftp/cmdtab.c +++ b/usr.bin/ftp/cmdtab.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmdtab.c,v 1.3 1996/11/09 19:55:11 kstailey Exp $ */ +/* $OpenBSD: cmdtab.c,v 1.4 1996/12/01 05:27:22 millert Exp $ */ /* $NetBSD: cmdtab.c,v 1.6 1995/09/08 01:06:10 tls Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)cmdtab.c 8.4 (Berkeley) 10/9/94"; #else -static char rcsid[] = "$OpenBSD: cmdtab.c,v 1.3 1996/11/09 19:55:11 kstailey Exp $"; +static char rcsid[] = "$OpenBSD: cmdtab.c,v 1.4 1996/12/01 05:27:22 millert Exp $"; #endif #endif /* not lint */ @@ -58,7 +58,7 @@ char casehelp[] = "toggle mget upper/lower case id mapping"; char cdhelp[] = "change remote working directory"; char cduphelp[] = "change remote working directory to parent directory"; char chmodhelp[] = "change file permissions of remote file"; -char connecthelp[] = "connect to remote tftp"; +char connecthelp[] = "connect to remote ftp"; char crhelp[] = "toggle carriage return stripping on ascii gets"; char deletehelp[] = "delete remote file"; char debughelp[] = "toggle/set debugging mode"; |