diff options
author | Jeremy Allison <jra@samba.org> | 2009-04-29 10:48:16 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-04-29 10:48:16 -0700 |
commit | edd25980b03c5fac154967e51705ac1cdb8d4091 (patch) | |
tree | 797e10e71a7f42b0593ed9b3a28dd03d5ac87fe5 /source3/client | |
parent | 8aa41bdeb21d087cba1ab20bd2a4bd69cd519881 (diff) | |
download | samba-edd25980b03c5fac154967e51705ac1cdb8d4091.tar.gz samba-edd25980b03c5fac154967e51705ac1cdb8d4091.tar.bz2 samba-edd25980b03c5fac154967e51705ac1cdb8d4091.zip |
More async calls in libsmb/clifile.c
Jeremy.
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 4735e8cc7a..0271b456c3 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3370,7 +3370,7 @@ static int cmd_hardlink(void) return 1; } - if (!cli_nt_hardlink(targetcli, targetname, dest)) { + if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) { d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli)); return 1; } |