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/client | |
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/client')
-rw-r--r-- | source3/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 4c90716c48..c734a24a6c 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -547,7 +547,7 @@ static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *fin if (!showacls) { d_printf(" %-30s%7.7s %8.0f %s", finfo->name, - attrib_string(finfo->mode), + attrib_string(talloc_tos(), finfo->mode), (double)finfo->size, time_to_asc(t)); dir_total += finfo->size; @@ -569,7 +569,7 @@ static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *fin } /* print file meta date header */ d_printf( "FILENAME:%s\n", finfo->name); - d_printf( "MODE:%s\n", attrib_string(finfo->mode)); + d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo->mode)); d_printf( "SIZE:%.0f\n", (double)finfo->size); d_printf( "MTIME:%s", time_to_asc(t)); status = cli_ntcreate(cli_state, afname, 0, |