From e695c1cc2b715afd713595e8daa77910d9f04138 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 11 Sep 2008 17:32:14 -0700 Subject: [PATCH] Use the given name, not the absolute pathname, when printing out ACL info. Make this match the non-ACL case. Jeremy. --- source/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/client.c b/source/client/client.c index 38da525db70..1c05c4035d1 100644 --- a/source/client/client.c +++ b/source/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)); -- 2.47.2