summaryrefslogtreecommitdiff
path: root/source3/client
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2019-03-18 11:00:50 +0100
committerJeremy Allison <jra@samba.org>2019-03-20 22:07:46 +0000
commit8c12a705e6f16bfe0260c82fcbd62043a4a6ee37 (patch)
treeb86c43937724b636e7270872b067b8e085c154d4 /source3/client
parentb5af004b23541550f46ef9b8fcaf5cb045f9da25 (diff)
downloadsamba-8c12a705e6f16bfe0260c82fcbd62043a4a6ee37.tar.gz
utils: Use cli_hardlink instead of cli_nt_hardlink
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/client')
-rw-r--r--source3/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index 9db8ff65717..366368630cb 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -4492,7 +4492,7 @@ static int cmd_hardlink(void)
return 1;
}
- status = cli_nt_hardlink(targetcli, targetname, dest);
+ status = cli_hardlink(targetcli, targetname, dest);
if (!NT_STATUS_IS_OK(status)) {
d_printf("%s doing an NT hard link of files\n",
nt_errstr(status));