summaryrefslogtreecommitdiffstats
path: root/source/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
commitf5cedb8c9618b83b63b5e2db867d238eebc7e13c (patch)
treed2ca947606d548b9dc445e27b36a122b25b8382e /source/lib/domain_namemap.c
parent51c1c31768a92d9c57ee6c09b78419bcbc544f03 (diff)
downloadsamba-f5cedb8c9618b83b63b5e2db867d238eebc7e13c.tar.gz
samba-f5cedb8c9618b83b63b5e2db867d238eebc7e13c.tar.xz
samba-f5cedb8c9618b83b63b5e2db867d238eebc7e13c.zip
fix to domain_namemap (domain, ntname wrong way round oops)
stupid compile errors with file_rename() call just created.
Diffstat (limited to 'source/lib/domain_namemap.c')
-rw-r--r--source/lib/domain_namemap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/domain_namemap.c b/source/lib/domain_namemap.c
index 09908be5fee..8bfaba287b7 100644
--- a/source/lib/domain_namemap.c
+++ b/source/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;
}