diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-08-15 23:22:56 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-08-15 23:22:56 +0000 |
commit | 59e1249d67cea9e4fe571869750625b93c99a62b (patch) | |
tree | f454560149fd5497f37b0bcd65858677aaef0e58 | |
parent | 1fa90101f0072ba29594be257cdbd2c747d92535 (diff) |
- markus@cvs.openbsd.org 2001/08/14 09:23:02
[sftp.1 sftp-int.c]
"bye"; hk63a@netscape.net
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sftp-int.c | 3 | ||||
-rw-r--r-- | sftp.1 | 4 |
3 files changed, 9 insertions, 3 deletions
@@ -23,6 +23,9 @@ | |||
23 | - stevesk@cvs.openbsd.org 2001/08/13 23:38:54 | 23 | - stevesk@cvs.openbsd.org 2001/08/13 23:38:54 |
24 | [scp.c] | 24 | [scp.c] |
25 | don't need main prototype (also sync with rcp); ok markus@ | 25 | don't need main prototype (also sync with rcp); ok markus@ |
26 | - markus@cvs.openbsd.org 2001/08/14 09:23:02 | ||
27 | [sftp.1 sftp-int.c] | ||
28 | "bye"; hk63a@netscape.net | ||
26 | 29 | ||
27 | 20010814 | 30 | 20010814 |
28 | - (stevesk) sshpty.c, cray.[ch]: whitespace, formatting and cleanup | 31 | - (stevesk) sshpty.c, cray.[ch]: whitespace, formatting and cleanup |
@@ -6312,4 +6315,4 @@ | |||
6312 | - Wrote replacements for strlcpy and mkdtemp | 6315 | - Wrote replacements for strlcpy and mkdtemp |
6313 | - Released 1.0pre1 | 6316 | - Released 1.0pre1 |
6314 | 6317 | ||
6315 | $Id: ChangeLog,v 1.1481 2001/08/15 23:21:01 mouring Exp $ | 6318 | $Id: ChangeLog,v 1.1482 2001/08/15 23:22:56 mouring Exp $ |
diff --git a/sftp-int.c b/sftp-int.c index 0851e63a2..841e562e1 100644 --- a/sftp-int.c +++ b/sftp-int.c | |||
@@ -26,7 +26,7 @@ | |||
26 | /* XXX: recursive operations */ | 26 | /* XXX: recursive operations */ |
27 | 27 | ||
28 | #include "includes.h" | 28 | #include "includes.h" |
29 | RCSID("$OpenBSD: sftp-int.c,v 1.39 2001/07/31 12:42:50 jakob Exp $"); | 29 | RCSID("$OpenBSD: sftp-int.c,v 1.40 2001/08/14 09:23:02 markus Exp $"); |
30 | 30 | ||
31 | #include "buffer.h" | 31 | #include "buffer.h" |
32 | #include "xmalloc.h" | 32 | #include "xmalloc.h" |
@@ -78,6 +78,7 @@ struct CMD { | |||
78 | }; | 78 | }; |
79 | 79 | ||
80 | const struct CMD cmds[] = { | 80 | const struct CMD cmds[] = { |
81 | { "bye", I_QUIT }, | ||
81 | { "cd", I_CHDIR }, | 82 | { "cd", I_CHDIR }, |
82 | { "chdir", I_CHDIR }, | 83 | { "chdir", I_CHDIR }, |
83 | { "chgrp", I_CHGRP }, | 84 | { "chgrp", I_CHGRP }, |
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: sftp.1,v 1.21 2001/06/23 17:48:18 itojun Exp $ | 1 | .\" $OpenBSD: sftp.1,v 1.22 2001/08/14 09:23:02 markus Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Copyright (c) 2001 Damien Miller. All rights reserved. | 3 | .\" Copyright (c) 2001 Damien Miller. All rights reserved. |
4 | .\" | 4 | .\" |
@@ -91,6 +91,8 @@ understands a set of commands similar to those of | |||
91 | Commands are case insensitive and pathnames may be enclosed in quotes if they | 91 | Commands are case insensitive and pathnames may be enclosed in quotes if they |
92 | contain spaces. | 92 | contain spaces. |
93 | .Bl -tag -width Ds | 93 | .Bl -tag -width Ds |
94 | .It Ic bye | ||
95 | Quit sftp. | ||
94 | .It Ic cd Ar path | 96 | .It Ic cd Ar path |
95 | Change remote directory to | 97 | Change remote directory to |
96 | .Ar path . | 98 | .Ar path . |