[sftp.c]
     Sort the sftp command list.
     OK from djm@
This commit is contained in:
Damien Miller 2014-05-15 13:46:52 +10:00
parent d8accc0aa7
commit b15cd7bb09
2 changed files with 7 additions and 3 deletions

View File

@ -11,6 +11,10 @@
Implement sftp upload resume support. Implement sftp upload resume support.
OK from djm@, with input from guenther@, mlarkin@ and OK from djm@, with input from guenther@, mlarkin@ and
okan@ okan@
- logan@cvs.openbsd.org 2014/04/22 10:07:12
[sftp.c]
Sort the sftp command list.
OK from djm@
20140430 20140430
- (dtucker) [defines.h] Define __GNUC_PREREQ__ macro if we don't already - (dtucker) [defines.h] Define __GNUC_PREREQ__ macro if we don't already

6
sftp.c
View File

@ -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> * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
* *
@ -151,15 +151,15 @@ enum sftp_command {
I_PUT, I_PUT,
I_PWD, I_PWD,
I_QUIT, I_QUIT,
I_REGET,
I_RENAME, I_RENAME,
I_REPUT,
I_RM, I_RM,
I_RMDIR, I_RMDIR,
I_SHELL, I_SHELL,
I_SYMLINK, I_SYMLINK,
I_VERSION, I_VERSION,
I_PROGRESS, I_PROGRESS,
I_REGET,
I_REPUT
}; };
struct CMD { struct CMD {