From e88a6d34383b37d9b6d019004a55e7cc4fc4f075 Mon Sep 17 00:00:00 2001 From: Lars Müller Date: Tue, 21 Aug 2007 14:42:36 +0000 Subject: r24601: Fix if statements where we still expected cli_connect() to return BOOL. (This used to be commit 12cb06d6ad73c37b9ee4bdf31f88dd3ce8cc3935) --- source3/client/smbctool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client') diff --git a/source3/client/smbctool.c b/source3/client/smbctool.c index 79542fbdab..28122d8430 100644 --- a/source3/client/smbctool.c +++ b/source3/client/smbctool.c @@ -3494,7 +3494,7 @@ static int do_message_op(void) msg_port = port ? port : 139; if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port) || - !cli_connect(cli, server_name, &ip)) { + !NT_STATUS_IS_OK(cli_connect(cli, server_name, &ip))) { d_printf("Connection to %s failed\n", desthost); return 1; } -- cgit