diff options
Diffstat (limited to 'source3/client/client.c')
-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 fcb9b27f1f..d74de35bc5 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1389,7 +1389,7 @@ static bool do_mkdir(const char *name) return false; } - if (!cli_mkdir(targetcli, targetname)) { + if (!NT_STATUS_IS_OK(cli_mkdir(targetcli, targetname))) { d_printf("%s making remote directory %s\n", cli_errstr(targetcli),name); return false; |