From 9a3e15df7ea6b3dd187490ca455d066b9d6b0ef6 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 22 Jul 2011 16:16:20 +0200 Subject: s3:client: make use of cli_state_remote_name() metze --- source3/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/client/client.c b/source3/client/client.c index 8c797e5e0e..142eea2733 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -4431,7 +4431,7 @@ static int cmd_show_connect( void ) return 1; } - d_printf("//%s/%s\n", targetcli->desthost, targetcli->share); + d_printf("//%s/%s\n", cli_state_remote_name(targetcli), targetcli->share); return 0; } -- cgit