summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2001-04-11 07:06:23 +0000
committerDamien Miller <djm@cvs.openbsd.org>2001-04-11 07:06:23 +0000
commit1499200f2f2dc21f529df6643459f01134b86b5b (patch)
tree991067f1bae517c3c00ec4dfcbdfb5ecae7293e7 /usr.bin/ssh
parentbb9b544d3deb8d6b913b2567e51e9bf25fbd4f60 (diff)
'mget' and 'mput' aliases; ok markus@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/sftp-int.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp-int.c b/usr.bin/ssh/sftp-int.c
index fa26ee9d354..2fd1750f51d 100644
--- a/usr.bin/ssh/sftp-int.c
+++ b/usr.bin/ssh/sftp-int.c
@@ -26,7 +26,7 @@
/* XXX: recursive operations */
#include "includes.h"
-RCSID("$OpenBSD: sftp-int.c,v 1.33 2001/04/05 10:42:53 markus Exp $");
+RCSID("$OpenBSD: sftp-int.c,v 1.34 2001/04/11 07:06:22 djm Exp $");
#include <glob.h>
@@ -88,6 +88,7 @@ const struct CMD cmds[] = {
{ "dir", I_LS },
{ "exit", I_QUIT },
{ "get", I_GET },
+ { "mget", I_GET },
{ "help", I_HELP },
{ "lcd", I_LCHDIR },
{ "lchdir", I_LCHDIR },
@@ -99,6 +100,7 @@ const struct CMD cmds[] = {
{ "lumask", I_LUMASK },
{ "mkdir", I_MKDIR },
{ "put", I_PUT },
+ { "mput", I_PUT },
{ "pwd", I_PWD },
{ "quit", I_QUIT },
{ "rename", I_RENAME },