1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r6291: BUG 2588: force smbclient messages to port 139 unless someone set the -p option

This commit is contained in:
Gerald Carter 2005-04-11 03:34:27 +00:00 committed by Gerald (Jerry) Carter
parent 5ea3fdff1b
commit 40f573e202

View File

@ -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;