diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-02-04 15:17:01 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-02-04 15:17:01 +0000 |
commit | dd7cadc1e1befb26204e2b7f9dd505c63f4472da (patch) | |
tree | e11ab7d725612c6ce7d1db29deaa6012b552d355 /usr.bin/ssh | |
parent | e7f9fb179b72b55e43ead68e39be4d993ae4ac8f (diff) |
fix LCD
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/sftp-int.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp-int.c b/usr.bin/ssh/sftp-int.c index f050c098ebe..d13be209ef3 100644 --- a/usr.bin/ssh/sftp-int.c +++ b/usr.bin/ssh/sftp-int.c @@ -27,7 +27,7 @@ /* XXX: recursive operations */ #include "includes.h" -RCSID("$OpenBSD: sftp-int.c,v 1.1 2001/02/04 11:11:54 djm Exp $"); +RCSID("$OpenBSD: sftp-int.c,v 1.2 2001/02/04 15:17:00 markus Exp $"); #include "buffer.h" #include "xmalloc.h" @@ -72,12 +72,12 @@ struct CMD { const struct CMD cmds[] = { { I_CHDIR, "CD" }, { I_CHDIR, "CHDIR" }, - { I_CHDIR, "LCD" }, { I_CHGRP, "CHGRP" }, { I_CHMOD, "CHMOD" }, { I_CHOWN, "CHOWN" }, { I_HELP, "HELP" }, { I_GET, "GET" }, + { I_LCHDIR, "LCD" }, { I_LCHDIR, "LCHDIR" }, { I_LLS, "LLS" }, { I_LMKDIR, "LMKDIR" }, |