diff options
author | Jeremy Allison <jra@samba.org> | 2019-10-18 09:45:33 -0700 |
---|---|---|
committer | Ralph Boehme <slow@samba.org> | 2019-10-30 20:44:31 +0000 |
commit | e26487aab01096492ec5ed4251039147963a8d1b (patch) | |
tree | fd00491aa41f9f20c04a319d9d2883eb6f8678a6 /source3/include/libsmb_internal.h | |
parent | 1f0715c0e5e6ff371e3b393a0b35222c8b6f49bc (diff) | |
download | samba-e26487aab01096492ec5ed4251039147963a8d1b.tar.gz |
s3: libsmb: Add missing ino field to internal struct smbc_dirplus_list.
This should have been added to struct libsmb_file_info, but
this is user-visible so I don't want to change this now. Adding
it to the containing struct allows us to synthesise a struct stat
to return from smbc_readdirplus2() to return all the info from
the server to callers.
Signed-off-by: Puran Chand <pchand@vmware.com>
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/include/libsmb_internal.h')
-rw-r--r-- | source3/include/libsmb_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/libsmb_internal.h b/source3/include/libsmb_internal.h index c1bcab18138..93b8336f067 100644 --- a/source3/include/libsmb_internal.h +++ b/source3/include/libsmb_internal.h @@ -97,6 +97,7 @@ struct smbc_dir_list { struct smbc_dirplus_list { struct smbc_dirplus_list *next; struct libsmb_file_info *smb_finfo; + uint64_t ino; }; /* |