svn commit: samba r5371 - in branches/SAMBA_4_0/source/libcli/raw: .

tridge at samba.org tridge at samba.org
Sun Feb 13 09:10:33 GMT 2005


Author: tridge
Date: 2005-02-13 09:10:33 +0000 (Sun, 13 Feb 2005)
New Revision: 5371

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=5371

Log:
on port 139 the called name needs to be in uppercase

Modified:
   branches/SAMBA_4_0/source/libcli/raw/clitree.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/raw/clitree.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/raw/clitree.c	2005-02-13 08:52:12 UTC (rev 5370)
+++ branches/SAMBA_4_0/source/libcli/raw/clitree.c	2005-02-13 09:10:33 UTC (rev 5371)
@@ -175,8 +175,8 @@
 
 	io.in.dest_host = dest_host;
 	io.in.port = port;
-	io.in.called_name = dest_host;
-	io.in.calling_name = my_name;
+	io.in.called_name = strupper_talloc(parent_ctx, dest_host);
+	io.in.calling_name = strupper_talloc(parent_ctx, my_name);
 	io.in.service = service;
 	io.in.service_type = service_type;
 	io.in.domain = domain;



More information about the samba-cvs mailing list