diff options
author | 2010-05-05 04:22:09 +0000 | |
---|---|---|
committer | 2010-05-05 04:22:09 +0000 | |
commit | c0b5480577b8527b4606bb743334366b4c197b9a (patch) | |
tree | a587b18bd9c2ae0f2559a971fef6c035c3b46e67 | |
parent | We don't include gettext, dgettext or dcgettext as gcc's builtins, so don't (diff) | |
download | wireguard-openbsd-c0b5480577b8527b4606bb743334366b4c197b9a.tar.xz wireguard-openbsd-c0b5480577b8527b4606bb743334366b4c197b9a.zip |
restore mput and mget which got lost in the tab-completion changes.
found by Kenneth Whitaker, ok djm@
-rw-r--r-- | usr.bin/ssh/sftp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp.c b/usr.bin/ssh/sftp.c index 780937e9f42..bb21e275693 100644 --- a/usr.bin/ssh/sftp.c +++ b/usr.bin/ssh/sftp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp.c,v 1.123 2010/01/27 19:21:39 djm Exp $ */ +/* $OpenBSD: sftp.c,v 1.124 2010/05/05 04:22:09 dtucker Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * @@ -158,6 +158,8 @@ static const struct CMD cmds[] = { { "ls", I_LS, REMOTE }, { "lumask", I_LUMASK, NOARGS }, { "mkdir", I_MKDIR, REMOTE }, + { "mget", I_GET, REMOTE }, + { "mput", I_PUT, LOCAL }, { "progress", I_PROGRESS, NOARGS }, { "put", I_PUT, LOCAL }, { "pwd", I_PWD, REMOTE }, |