diff options
author | Jeremy Allison <jra@samba.org> | 2008-09-11 17:32:14 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-09-11 17:32:14 -0700 |
commit | cc5f51d5df0a49728d6d89d2ca90266448b2afb0 (patch) | |
tree | 2f8d943d123c19cecf3183ff6a9b17789a73d272 /source3/client | |
parent | 65ae60489dc416c75112d576e94d84c26ec54875 (diff) | |
download | samba-cc5f51d5df0a49728d6d89d2ca90266448b2afb0.tar.gz samba-cc5f51d5df0a49728d6d89d2ca90266448b2afb0.tar.bz2 samba-cc5f51d5df0a49728d6d89d2ca90266448b2afb0.zip |
Use the given name, not the absolute pathname, when printing out ACL info.
Make this match the non-ACL case.
Jeremy.
(This used to be commit e695c1cc2b715afd713595e8daa77910d9f04138)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 38da525db7..1c05c4035d 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -528,7 +528,7 @@ static void display_finfo(file_info *finfo, const char *dir) return; } /* print file meta date header */ - d_printf( "FILENAME:%s\n", afname); + d_printf( "FILENAME:%s\n", finfo->name); d_printf( "MODE:%s\n", attrib_string(finfo->mode)); d_printf( "SIZE:%.0f\n", (double)finfo->size); d_printf( "MTIME:%s", time_to_asc(t)); |