diff options
author | Loganaden Velvindron <logan@cvs.openbsd.org> | 2014-04-22 10:07:13 +0000 |
---|---|---|
committer | Loganaden Velvindron <logan@cvs.openbsd.org> | 2014-04-22 10:07:13 +0000 |
commit | 9f50ce7595da47d1a7386c57ea416fb5c4102d46 (patch) | |
tree | f2b7316e75027bb5a18cd7fc3a2d04476265a16b | |
parent | 73e83f0d92186a41f607d98b5196c907dafadb94 (diff) |
Sort the sftp command list.
OK from djm@
-rw-r--r-- | usr.bin/ssh/sftp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sftp.c b/usr.bin/ssh/sftp.c index 6d84926653f..c294fa26a6a 100644 --- a/usr.bin/ssh/sftp.c +++ b/usr.bin/ssh/sftp.c @@ -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> * @@ -130,15 +130,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 { |