diff options
author | Damien Miller <djm@mindrot.org> | 2014-05-15 05:46:52 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-05-15 05:46:52 +0200 |
commit | b15cd7bb097fd80dc99520f45290ef775da1ef19 (patch) | |
tree | 674f7351ce71082bcc52c4eed490fc85d14435ed /sftp.c | |
parent | - logan@cvs.openbsd.org 2014/04/21 14:36:16 (diff) | |
download | openssh-b15cd7bb097fd80dc99520f45290ef775da1ef19.tar.xz openssh-b15cd7bb097fd80dc99520f45290ef775da1ef19.zip |
- logan@cvs.openbsd.org 2014/04/22 10:07:12
[sftp.c]
Sort the sftp command list.
OK from djm@
Diffstat (limited to 'sftp.c')
-rw-r--r-- | sftp.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sftp.c,v 1.159 2014/04/21 14:36:16 logan Exp $ */ +/* $OpenBSD: sftp.c,v 1.160 2014/04/22 10:07:12 logan Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * @@ -151,15 +151,15 @@ enum sftp_command { I_PUT, I_PWD, I_QUIT, + I_REGET, I_RENAME, + I_REPUT, I_RM, I_RMDIR, I_SHELL, I_SYMLINK, I_VERSION, I_PROGRESS, - I_REGET, - I_REPUT }; struct CMD { |