summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2001-04-11 07:06:22 +0000
committerdjm <djm@openbsd.org>2001-04-11 07:06:22 +0000
commitda0a924f17bd5c498ae6f0eb5e5337e4f0562b37 (patch)
treef4cb1ea9778506572820d9de2eb77b9bf36eedeb
parentdriver for BCM5201/5202 PHY (diff)
downloadwireguard-openbsd-da0a924f17bd5c498ae6f0eb5e5337e4f0562b37.tar.xz
wireguard-openbsd-da0a924f17bd5c498ae6f0eb5e5337e4f0562b37.zip
'mget' and 'mput' aliases; ok markus@
-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 },