diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-29 12:05:07 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-29 16:38:14 +1000 |
commit | 724915f721819705c7cf5c850a24b32f815c07e3 (patch) | |
tree | dd4b2748fea9466d941a261ee5a50d1b01874c84 /source3/include | |
parent | 0520da2bbe246c45d89bfdec0d399862ecb867ba (diff) | |
download | samba-724915f721819705c7cf5c850a24b32f815c07e3.tar.gz samba-724915f721819705c7cf5c850a24b32f815c07e3.tar.bz2 samba-724915f721819705c7cf5c850a24b32f815c07e3.zip |
s3-client Add TALLOC_CTX argument to attrib_string().
This ensures the caller knows where the memory was allocated.
Andrew Bartlett
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 27a8990e20..a697188abc 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -630,7 +630,7 @@ bool file_exist_stat(const char *fname,SMB_STRUCT_STAT *sbuf, bool socket_exist(const char *fname); uint64_t get_file_size_stat(const SMB_STRUCT_STAT *sbuf); SMB_OFF_T get_file_size(char *file_name); -char *attrib_string(uint16 mode); +char *attrib_string(TALLOC_CTX *mem_ctx, uint16 mode); void show_msg(char *buf); void smb_set_enclen(char *buf,int len,uint16 enc_ctx_num); void smb_setlen(char *buf,int len); |