summaryrefslogtreecommitdiff
path: root/source3/lib/domain_namemap.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-12-01 16:22:09 +0000
committerLuke Leighton <lkcl@samba.org>1998-12-01 16:22:09 +0000
commit2d6525f477624c60de736b4256208a465731e419 (patch)
tree41d4f5f7484ab17e4a50be54478d2143b0ef00c5 /source3/lib/domain_namemap.c
parent67638b8d2b59dc992280af934346a5a1ef5fe62d (diff)
downloadsamba-2d6525f477624c60de736b4256208a465731e419.tar.gz
samba-2d6525f477624c60de736b4256208a465731e419.tar.bz2
samba-2d6525f477624c60de736b4256208a465731e419.zip
fix to domain_namemap (domain, ntname wrong way round oops)
stupid compile errors with file_rename() call just created. (This used to be commit f5cedb8c9618b83b63b5e2db867d238eebc7e13c)
Diffstat (limited to 'source3/lib/domain_namemap.c')
-rw-r--r--source3/lib/domain_namemap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/domain_namemap.c b/source3/lib/domain_namemap.c
index 09908be5fe..8bfaba287b 100644
--- a/source3/lib/domain_namemap.c
+++ b/source3/lib/domain_namemap.c
@@ -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;
}