From: Volker Lendecke Date: Thu, 21 Jun 2007 14:30:40 +0000 (+0000) Subject: r23567: Fix bug 4721 X-Git-Tag: samba-4.0.0alpha6~801^2~5575 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=622af1be30ad0cc9733386b6616549cd123689d8;p=thirdparty%2Fsamba.git r23567: Fix bug 4721 (This used to be commit f2050f5a3af382ad88071a5d5f6b172af4143e0f) --- diff --git a/source3/client/smbmount.c b/source3/client/smbmount.c index 805245b634b..4e1c94e1fa9 100644 --- a/source3/client/smbmount.c +++ b/source3/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);