diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-07-22 16:16:20 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-07-22 17:06:09 +0200 |
commit | 9a3e15df7ea6b3dd187490ca455d066b9d6b0ef6 (patch) | |
tree | 1fce26c4eca1afe084d536cdd3cc66b9d8c0322a /source3/client | |
parent | ab9d99cece8e450309f4d1c604ce99cfce062fc9 (diff) | |
download | samba-9a3e15df7ea6b3dd187490ca455d066b9d6b0ef6.tar.gz samba-9a3e15df7ea6b3dd187490ca455d066b9d6b0ef6.tar.bz2 samba-9a3e15df7ea6b3dd187490ca455d066b9d6b0ef6.zip |
s3:client: make use of cli_state_remote_name()
metze
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 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; } |