From: Jeremy Allison Date: Mon, 1 Jun 2020 19:01:13 +0000 (-0700) Subject: s3: libsmb: Info level SMB_FIND_INFO_STANDARD encodes attibutes as a uint16, not... X-Git-Tag: ldb-2.2.0~237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be52f87c376a8f71b2de4aa52f25818cad2b160e;p=thirdparty%2Fsamba.git s3: libsmb: Info level SMB_FIND_INFO_STANDARD encodes attibutes as a uint16, not a uint8. We will need this to detect FILE_ATTRIBUTE_REPARSE_POINT in a later commit. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14391 Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- diff --git a/source3/libsmb/clilist.c b/source3/libsmb/clilist.c index d0f67ed25bd..e00cdc4921c 100644 --- a/source3/libsmb/clilist.c +++ b/source3/libsmb/clilist.c @@ -152,7 +152,7 @@ static size_t interpret_long_filename(TALLOC_CTX *ctx, finfo->mtime_ts = convert_time_t_to_timespec( make_unix_date2(p+12, smb1cli_conn_server_time_zone(cli->conn))); finfo->size = IVAL(p,16); - finfo->mode = CVAL(p,24); + finfo->mode = SVAL(p,24); len = CVAL(p, 26); p += 27; if (recv_flags2 & FLAGS2_UNICODE_STRINGS) {