1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-08-08 19:02:07 +03:00

Use string_buf in sftp_init().

This commit is contained in:
Michael Buckley
2018-12-07 15:10:07 -08:00
parent c02d9b7b73
commit 41fbd4476a
4 changed files with 50 additions and 80 deletions

View File

@@ -97,12 +97,12 @@ struct _LIBSSH2_SFTP_ATTRIBUTES {
/* If flags & ATTR_* bit is set, then the value in this struct will be
* meaningful Otherwise it should be ignored
*/
unsigned long flags;
uint32_t flags;
libssh2_uint64_t filesize;
unsigned long uid, gid;
unsigned long permissions;
unsigned long atime, mtime;
uint32_t uid, gid;
uint32_t permissions;
uint32_t atime, mtime;
};
struct _LIBSSH2_SFTP_STATVFS {