summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-12-02 16:20:36 +0000
committerLuke Leighton <lkcl@samba.org>1998-12-02 16:20:36 +0000
commit1bf14231e1b3a114b46f92bb96bdd55b554570bc (patch)
tree81f8fa8a3134af2fb3acb62a8c8640c17058d6ec /source3/lib
parent137f9c7042678bbc4b4a351364eb3819677183bd (diff)
downloadsamba-1bf14231e1b3a114b46f92bb96bdd55b554570bc.tar.gz
samba-1bf14231e1b3a114b46f92bb96bdd55b554570bc.tar.bz2
samba-1bf14231e1b3a114b46f92bb96bdd55b554570bc.zip
issues spotted by andrej: %s\\%s not %s\%s
(This used to be commit 779a7aa30d4b8a3c8ca1d817a3fd9886c0437def)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/domain_namemap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/domain_namemap.c b/source3/lib/domain_namemap.c
index 8bfaba287b..407de944a7 100644
--- a/source3/lib/domain_namemap.c
+++ b/source3/lib/domain_namemap.c
@@ -303,7 +303,7 @@ static BOOL make_mydomain_sid(DOM_NAME_MAP *grp, DOM_MAP_TYPE type)
{
if (type != DOM_MAP_USER)
{
- DEBUG(0,("well-known NT user %s\%s listed in wrong map file\n",
+ DEBUG(0,("well-known NT user %s\\%s listed in wrong map file\n",
grp->nt_domain, grp->nt_name));
return False;
}
@@ -313,7 +313,7 @@ static BOOL make_mydomain_sid(DOM_NAME_MAP *grp, DOM_MAP_TYPE type)
{
if (type != DOM_MAP_DOMAIN)
{
- DEBUG(0,("well-known NT group %s\%s listed in wrong map file\n",
+ DEBUG(0,("well-known NT group %s\\%s listed in wrong map file\n",
grp->nt_domain, grp->nt_name));
return False;
}