1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

r918: - dcerpc endpoint name are case insensitive

this fix allows samba3 to join a samba4 domain using "net rpc join"
(This used to be commit 876a6eecc3db99a137b58993ce7cf69f277e7499)
This commit is contained in:
Andrew Tridgell 2004-05-27 05:24:32 +00:00 committed by Gerald (Jerry) Carter
parent db3c011977
commit 7a6d86fbc9

View File

@ -35,7 +35,7 @@ static BOOL endpoints_match(const struct dcesrv_ep_description *ep1,
switch (ep1->type) {
case ENDPOINT_SMB:
if (strcmp(ep1->info.smb_pipe,ep2->info.smb_pipe)==0) {
if (strcasecmp(ep1->info.smb_pipe,ep2->info.smb_pipe)==0) {
return True;
}
break;