aboutsummaryrefslogtreecommitdiff
path: root/include/libssh/sftp.h
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2014-04-22 18:46:29 +0200
committerAndreas Schneider <asn@cryptomilk.org>2014-08-06 09:51:00 +0200
commitc341da03d30fcdb6ca9f1b3bd6bf45e32b0a89c1 (patch)
treedf539e1706584ad940a90450052b0d052eeb3c84 /include/libssh/sftp.h
parentc2381360107c37e95ae335093a8ec63b47b1e9a6 (diff)
downloadlibssh-c341da03d30fcdb6ca9f1b3bd6bf45e32b0a89c1.tar.gz
libssh-c341da03d30fcdb6ca9f1b3bd6bf45e32b0a89c1.tar.xz
libssh-c341da03d30fcdb6ca9f1b3bd6bf45e32b0a89c1.zip
buffers: adapt sftp.c to ssh_buffer_(un)pack()
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'include/libssh/sftp.h')
-rw-r--r--include/libssh/sftp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/libssh/sftp.h b/include/libssh/sftp.h
index d370f0ec..8fb8f116 100644
--- a/include/libssh/sftp.h
+++ b/include/libssh/sftp.h
@@ -143,10 +143,10 @@ struct sftp_request_queue_struct {
/* SSH_FXP_MESSAGE described into .7 page 26 */
struct sftp_status_message_struct {
- uint32_t id;
- uint32_t status;
- ssh_string error;
- ssh_string lang;
+ uint32_t id;
+ uint32_t status;
+ ssh_string error_unused; /* not used anymore */
+ ssh_string lang_unused; /* not used anymore */
char *errormsg;
char *langmsg;
};