mirror of
https://github.com/curl/curl.git
synced 2026-07-26 02:37:16 +03:00
ftp wildcard: fix int32_t and size/group mixups
This commit is contained in:
parent
43b816538f
commit
e4af5d6efc
2 changed files with 10 additions and 18 deletions
|
|
@ -231,7 +231,7 @@ struct curl_fileinfo {
|
|||
char *filename;
|
||||
curlfiletype filetype;
|
||||
time_t time;
|
||||
int32_t perm;
|
||||
unsigned int perm;
|
||||
int uid;
|
||||
int gid;
|
||||
curl_off_t size;
|
||||
|
|
@ -246,7 +246,7 @@ struct curl_fileinfo {
|
|||
char *target; /* pointer to the target filename of a symlink */
|
||||
} strings;
|
||||
|
||||
int32_t flags;
|
||||
unsigned int flags;
|
||||
|
||||
/* used internally */
|
||||
char * b_data;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue