diff options
author | 1997-08-30 20:48:41 +0000 | |
---|---|---|
committer | 1997-08-30 20:48:41 +0000 | |
commit | 8b61be4c637fea05d57105953a82890e54deef9c (patch) | |
tree | 2e6686e8f28e41e416a91cfa297f1eaa6fcca028 | |
parent | incorrect length in comparison; hubert.feyrer@rz.uni-regensburg.de (diff) | |
download | wireguard-openbsd-8b61be4c637fea05d57105953a82890e54deef9c.tar.xz wireguard-openbsd-8b61be4c637fea05d57105953a82890e54deef9c.zip |
s/toinitiate/to initiate/
-rw-r--r-- | usr.bin/ftp/cmds.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ftp/cmds.c b/usr.bin/ftp/cmds.c index a1c2330e309..09b3d2dffc7 100644 --- a/usr.bin/ftp/cmds.c +++ b/usr.bin/ftp/cmds.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmds.c,v 1.21 1997/07/25 21:56:17 millert Exp $ */ +/* $OpenBSD: cmds.c,v 1.22 1997/08/30 20:48:41 kstailey Exp $ */ /* $NetBSD: cmds.c,v 1.26 1997/07/21 14:03:48 lukem Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)cmds.c 8.6 (Berkeley) 10/9/94"; #else -static char rcsid[] = "$OpenBSD: cmds.c,v 1.21 1997/07/25 21:56:17 millert Exp $"; +static char rcsid[] = "$OpenBSD: cmds.c,v 1.22 1997/08/30 20:48:41 kstailey Exp $"; #endif #endif /* not lint */ @@ -1922,8 +1922,8 @@ restart(argc, argv) fputs("restart: offset not specified.\n", ttyout); else { restart_point = atol(argv[1]); - fprintf(ttyout, "Restarting at %qd. Execute get, put or append to" - "initiate transfer\n", (quad_t)restart_point); + fprintf(ttyout, "Restarting at %qd. Execute get, put or append" + " to initiate transfer\n", (quad_t)restart_point); } } |