From: Gerald Carter Date: Mon, 11 Apr 2005 03:34:27 +0000 (+0000) Subject: r6291: BUG 2588: force smbclient messages to port 139 unless someone set the -p option X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~4949 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40f573e202096088957bfff8ca2eb49f5b4985bd;p=thirdparty%2Fsamba.git r6291: BUG 2588: force smbclient messages to port 139 unless someone set the -p option --- diff --git a/source/client/client.c b/source/client/client.c index 204e51d4cc3..604bf0989a8 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -3252,6 +3252,7 @@ static int do_message_op(void) struct nmb_name called, calling; fstring server_name; char name_type_hex[10]; + int msg_port; make_nmb_name(&calling, calling_name, 0x0); make_nmb_name(&called , desthost, name_type); @@ -3264,7 +3265,11 @@ static int do_message_op(void) if (have_ip) ip = dest_ip; - if (!(cli=cli_initialise(NULL)) || (cli_set_port(cli, port) != port) || + /* we can only do messages over port 139 (to windows clients at least) */ + + msg_port = port ? port : 139; + + if (!(cli=cli_initialise(NULL)) || (cli_set_port(cli, msg_port) != msg_port) || !cli_connect(cli, server_name, &ip)) { d_printf("Connection to %s failed\n", desthost); return 1;