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

fix to domain_namemap (domain, ntname wrong way round oops)

stupid compile errors with file_rename() call just created.
This commit is contained in:
Luke Leighton
-
parent 51c1c31768
commit f5cedb8c96
4 changed files with 10 additions and 8 deletions

View File

@@ -951,7 +951,7 @@ BOOL lookupsmbpwntnam(char *fullntname, DOM_NAME_MAP *gmep)
{
DEBUG(10,("lookupsmbpwntnam: nt user name %s\n", fullntname));
if (!split_domain_name(fullntname, nt_name, nt_domain))
if (!split_domain_name(fullntname, nt_domain, nt_name))
{
return False;
}