diff options
author | 2000-12-24 00:29:00 +0000 | |
---|---|---|
committer | 2000-12-24 00:29:00 +0000 | |
commit | 33a7bde90a34228ae2e6bef58e10d1a9b875ce02 (patch) | |
tree | 40d42f94fe5372fd6635546ad9f7bf6eb371a3bf | |
parent | Fix an off-by-one error. Since `i' starts at 0, not 1, we don't have to (diff) | |
download | wireguard-openbsd-33a7bde90a34228ae2e6bef58e10d1a9b875ce02.tar.xz wireguard-openbsd-33a7bde90a34228ae2e6bef58e10d1a9b875ce02.zip |
Spelling: tripple -> triple
-rw-r--r-- | usr.bin/ftp/cmds.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/cmds.c b/usr.bin/ftp/cmds.c index 4761703adb2..a75a1fd7646 100644 --- a/usr.bin/ftp/cmds.c +++ b/usr.bin/ftp/cmds.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmds.c,v 1.34 2000/06/21 19:22:54 itojun Exp $ */ +/* $OpenBSD: cmds.c,v 1.35 2000/12/24 00:29:00 aaron Exp $ */ /* $NetBSD: cmds.c,v 1.27 1997/08/18 10:20:15 lukem Exp $ */ /* @@ -67,7 +67,7 @@ #if 0 static char sccsid[] = "@(#)cmds.c 8.6 (Berkeley) 10/9/94"; #else -static char rcsid[] = "$OpenBSD: cmds.c,v 1.34 2000/06/21 19:22:54 itojun Exp $"; +static char rcsid[] = "$OpenBSD: cmds.c,v 1.35 2000/12/24 00:29:00 aaron Exp $"; #endif #endif /* not lint */ @@ -1522,7 +1522,7 @@ quote1(initial, argc, argv) } } - /* Make double (tripple?) sure the sucker is NUL terminated */ + /* Make double (triple?) sure the sucker is NUL terminated */ buf[sizeof(buf) - 1] = '\0'; if (command("%s", buf) == PRELIM) { |