From 69b23a39cde21989946fc9f44defec6d2302b5da Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 4 Apr 2008 01:44:43 +0200 Subject: Always uppercase cli->srv_name_slash. Not that I think it is of any importance... Guenther (This used to be commit 352f8440c74bc22416e21783e1dc5fecf5869902) --- source3/libsmb/cliconnect.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c index 5e8a586cd0..8bdc284693 100644 --- a/source3/libsmb/cliconnect.c +++ b/source3/libsmb/cliconnect.c @@ -1486,6 +1486,7 @@ NTSTATUS cli_connect(struct cli_state *cli, fstrcpy(cli->desthost, host); fstr_sprintf(cli->srv_name_slash, "\\\\%s", cli->desthost); + strupper_m(cli->srv_name_slash); /* allow hostnames of the form NAME#xx and do a netbios lookup */ if ((p = strchr(cli->desthost, '#'))) { -- cgit