1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-30 08:23:49 +03:00

r918: - dcerpc endpoint name are case insensitive

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

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;