From f2050f5a3af382ad88071a5d5f6b172af4143e0f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 21 Jun 2007 14:30:40 +0000 Subject: [PATCH] r23567: Fix bug 4721 --- source/client/smbmount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/smbmount.c b/source/client/smbmount.c index 805245b634b..4e1c94e1fa9 100644 --- a/source/client/smbmount.c +++ b/source/client/smbmount.c @@ -152,7 +152,7 @@ static struct cli_state *do_connection(char *the_service) /* have to open a new connection */ if (!(c=cli_initialise()) || (cli_set_port(c, smb_port) != smb_port) || - !cli_connect(c, server_n, &ip)) { + !NT_STATUS_IS_OK(cli_connect(c, server_n, &ip))) { DEBUG(0,("%d: Connection to %s failed\n", sys_getpid(), server_n)); if (c) { cli_shutdown(c);