1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-07 20:23:50 +03:00

automatically uppercase server and share names (win95 won't handle

lowercase share names!)
This commit is contained in:
Andrew Tridgell
-
parent c58f496510
commit dddf1d8522
3 changed files with 7 additions and 12 deletions

View File

@@ -839,6 +839,7 @@ BOOL cli_send_tconX(struct cli_state *cli,
slprintf(fullshare, sizeof(fullshare)-1,
"\\\\%s\\%s", cli->desthost, share);
strupper(fullshare);
set_message(cli->outbuf,4,
2 + strlen(fullshare) + passlen + strlen(dev),True);