FTP fixes.

* (parse_ls_line): fix get of file GID.
  * (ftpfs_parse_long_list_MLSD): likewise.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Ovsyannikov Sergey E 2022-08-11 21:42:42 +03:00 committed by Andrew Borodin
parent 21c45e8a7a
commit 3e7424a95a
1 changed files with 2 additions and 2 deletions

View File

@ -323,7 +323,7 @@ parse_ls_line (char *line, struct stat *s, char **filename, char **linkname)
long long size;
int n;
s->st_gid = ftpfs_get_gid (t);
s->st_gid = ftpfs_get_gid (group_or_size);
if (sscanf (t, "%lld%n", &size, &n) == 1 && t[n] == '\0')
s->st_size = (off_t) size;
@ -801,7 +801,7 @@ ftpfs_parse_long_list_MLSD (char *line, struct stat *s, char **filename, char **
if (owner != NULL)
s->st_uid = ftpfs_get_uid (owner);
if (group != NULL)
s->st_uid = ftpfs_get_gid (group);
s->st_gid = ftpfs_get_gid (group);
return TRUE;
}