diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sftp.c | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -11,6 +11,10 @@ | |||
11 | Implement sftp upload resume support. | 11 | Implement sftp upload resume support. |
12 | OK from djm@, with input from guenther@, mlarkin@ and | 12 | OK from djm@, with input from guenther@, mlarkin@ and |
13 | okan@ | 13 | okan@ |
14 | - logan@cvs.openbsd.org 2014/04/22 10:07:12 | ||
15 | [sftp.c] | ||
16 | Sort the sftp command list. | ||
17 | OK from djm@ | ||
14 | 18 | ||
15 | 20140430 | 19 | 20140430 |
16 | - (dtucker) [defines.h] Define __GNUC_PREREQ__ macro if we don't already | 20 | - (dtucker) [defines.h] Define __GNUC_PREREQ__ macro if we don't already |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sftp.c,v 1.159 2014/04/21 14:36:16 logan Exp $ */ | 1 | /* $OpenBSD: sftp.c,v 1.160 2014/04/22 10:07:12 logan Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> | 3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> |
4 | * | 4 | * |
@@ -151,15 +151,15 @@ enum sftp_command { | |||
151 | I_PUT, | 151 | I_PUT, |
152 | I_PWD, | 152 | I_PWD, |
153 | I_QUIT, | 153 | I_QUIT, |
154 | I_REGET, | ||
154 | I_RENAME, | 155 | I_RENAME, |
156 | I_REPUT, | ||
155 | I_RM, | 157 | I_RM, |
156 | I_RMDIR, | 158 | I_RMDIR, |
157 | I_SHELL, | 159 | I_SHELL, |
158 | I_SYMLINK, | 160 | I_SYMLINK, |
159 | I_VERSION, | 161 | I_VERSION, |
160 | I_PROGRESS, | 162 | I_PROGRESS, |
161 | I_REGET, | ||
162 | I_REPUT | ||
163 | }; | 163 | }; |
164 | 164 | ||
165 | struct CMD { | 165 | struct CMD { |