From cc5f51d5df0a49728d6d89d2ca90266448b2afb0 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 11 Sep 2008 17:32:14 -0700 Subject: 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) --- source3/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client') 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)); -- cgit