From 02e610b927c9038cf498f726d807ee95a14714be Mon Sep 17 00:00:00 2001 From: Samba Release Account Date: Thu, 3 Apr 1997 16:57:06 +0000 Subject: name_type for name_query with smbclient -M name should be used. that way, you get messages to the proper location. lkcl (This used to be commit deedac6523cdc435a1a26ad0c13d7a53042aafb6) --- source3/client/client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/client/client.c b/source3/client/client.c index 708b80a23b..ac6878786a 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2921,7 +2921,7 @@ static BOOL send_session_request(char *inbuf,char *outbuf) /* put in the destination name */ p = outbuf+len; - name_mangle(dest,p,name_type); + name_mangle(dest,p,0x20); /* 0x20 is the SMB server NetBIOS type. */ len += name_len(p); /* and my name */ @@ -4011,7 +4011,7 @@ static BOOL open_sockets(int port ) interpret_addr(lp_socket_address()))) != -1) { set_socket_options(bcast, "SO_BROADCAST"); - if (name_query(bcast, host, 0x20, True, True, *iface_bcast(dest_ip), + if (name_query(bcast, host, name_type, True, True, *iface_bcast(dest_ip), &dest_ip,0)) { failed = False; } @@ -4392,7 +4392,7 @@ static void usage(char *pname) strcpy(user_socket_options,optarg); break; case 'M': - name_type = 3; + name_type = 0x03; /* messages are sent to NetBIOS name type 0x3 */ strcpy(desthost,optarg); strupper(desthost); message = True; -- cgit