summaryrefslogtreecommitdiff
path: root/source4/libcli
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-02-13 09:10:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:09:48 -0500
commitd8da32a2845b99cc4272fedd28dff570331be63e (patch)
treec97c041b1ef046ed19a3cc8836ef0d93c498ea83 /source4/libcli
parentcc336df026db5b613c2416163a5167bfe57fb810 (diff)
downloadsamba-d8da32a2845b99cc4272fedd28dff570331be63e.tar.gz
samba-d8da32a2845b99cc4272fedd28dff570331be63e.tar.bz2
samba-d8da32a2845b99cc4272fedd28dff570331be63e.zip
r5371: on port 139 the called name needs to be in uppercase
(This used to be commit c5aef260c4581bfc0d32ec09fac3414156c40230)
Diffstat (limited to 'source4/libcli')
-rw-r--r--source4/libcli/raw/clitree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/raw/clitree.c b/source4/libcli/raw/clitree.c
index ce4dafca9f..74db1c6952 100644
--- a/source4/libcli/raw/clitree.c
+++ b/source4/libcli/raw/clitree.c
@@ -175,8 +175,8 @@ NTSTATUS smbcli_tree_full_connection(TALLOC_CTX *parent_ctx,
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;