- djm@cvs.openbsd.org 2001/04/11 07:06:22

[sftp-int.c]
     'mget' and 'mput' aliases; ok markus@
This commit is contained in:
Ben Lindstrom 2001-04-11 23:05:17 +00:00
parent c486d88bf8
commit 23d9a6d38e
2 changed files with 7 additions and 2 deletions

View File

@ -9,6 +9,9 @@
- markus@cvs.openbsd.org 2001/04/10 12:15:23
[channels.c]
debug cleanup
- djm@cvs.openbsd.org 2001/04/11 07:06:22
[sftp-int.c]
'mget' and 'mput' aliases; ok markus@
20010410
- OpenBSD CVS Sync
@ -5002,4 +5005,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1096 2001/04/11 16:08:34 mouring Exp $
$Id: ChangeLog,v 1.1097 2001/04/11 23:05:17 mouring Exp $

View File

@ -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 "buffer.h"
#include "xmalloc.h"
@ -86,6 +86,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 },
@ -97,6 +98,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 },