summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-05-10 11:56:50 +1000
committerDamien Miller <djm@mindrot.org>2010-05-10 11:56:50 +1000
commit099fc1634e1cc0f96b77a811e554bf9d796def8f (patch)
tree1e599c108e3d16e7dd96b0c6cd5b719a8551637b /sftp.c
parent2725c2193bdc0b7d0396cf8c69f1eb0d2787eee5 (diff)
- dtucker@cvs.openbsd.org 2010/05/05 04:22:09
[sftp.c] restore mput and mget which got lost in the tab-completion changes. found by Kenneth Whitaker, ok djm@
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sftp.c b/sftp.c
index d65d4ec62..5366c075f 100644
--- a/sftp.c
+++ b/sftp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp.c,v 1.123 2010/01/27 19:21:39 djm Exp $ */ 1/* $OpenBSD: sftp.c,v 1.124 2010/05/05 04:22:09 dtucker Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -181,6 +181,8 @@ static const struct CMD cmds[] = {
181 { "ls", I_LS, REMOTE }, 181 { "ls", I_LS, REMOTE },
182 { "lumask", I_LUMASK, NOARGS }, 182 { "lumask", I_LUMASK, NOARGS },
183 { "mkdir", I_MKDIR, REMOTE }, 183 { "mkdir", I_MKDIR, REMOTE },
184 { "mget", I_GET, REMOTE },
185 { "mput", I_PUT, LOCAL },
184 { "progress", I_PROGRESS, NOARGS }, 186 { "progress", I_PROGRESS, NOARGS },
185 { "put", I_PUT, LOCAL }, 187 { "put", I_PUT, LOCAL },
186 { "pwd", I_PWD, REMOTE }, 188 { "pwd", I_PWD, REMOTE },