summaryrefslogtreecommitdiff
path: root/source3/winbindd
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-07-31 23:17:54 +0200
committerVolker Lendecke <vl@samba.org>2009-07-31 23:19:05 +0200
commita488334bf1d2c76ebad123df4fc970d617dee126 (patch)
tree4a12b1543106913f335ec249bf72249333bbc84b /source3/winbindd
parent42becbc7a810e1d521f5aee6bcbbb5c1ad3ab7bf (diff)
downloadsamba-a488334bf1d2c76ebad123df4fc970d617dee126.tar.gz
samba-a488334bf1d2c76ebad123df4fc970d617dee126.tar.bz2
samba-a488334bf1d2c76ebad123df4fc970d617dee126.zip
Rename LOOKUP_NAME_EXPLICIT to LOOKUP_NAME_NO_NSS
It took me a bit to understand what this flag does. I hope this is a bit clearer, at least it is to me.
Diffstat (limited to 'source3/winbindd')
-rw-r--r--source3/winbindd/winbindd_passdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_passdb.c b/source3/winbindd/winbindd_passdb.c
index 89eda3c820..b959bfc9ad 100644
--- a/source3/winbindd/winbindd_passdb.c
+++ b/source3/winbindd/winbindd_passdb.c
@@ -103,7 +103,7 @@ static NTSTATUS name_to_sid(struct winbindd_domain *domain,
break;
default:
/* Avoid any NSS calls in the lookup_name by default */
- flags |= LOOKUP_NAME_EXPLICIT;
+ flags |= LOOKUP_NAME_NO_NSS;
DEBUG(10,("winbindd_passdb: limiting name_to_sid() to explicit mappings\n"));
break;
}