diff options
author | Simo Sorce <idra@samba.org> | 2003-04-27 12:07:20 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2003-04-27 12:07:20 +0000 |
commit | c737b1f7587ca7d32a974c6249eec9510e566a9c (patch) | |
tree | e64d93c90d9ef832a1bf50f535d60752bb383392 /source3/nsswitch/winbindd.c | |
parent | d2fd4707ab6c53d1dd886c6ec189163d12c8ce8b (diff) | |
download | samba-c737b1f7587ca7d32a974c6249eec9510e566a9c.tar.gz samba-c737b1f7587ca7d32a974c6249eec9510e566a9c.tar.bz2 samba-c737b1f7587ca7d32a974c6249eec9510e566a9c.zip |
make winbind use idmap as well.
change idmap_init call
removed ldap backend for winbind idmap, seem it had problems anyway and it
have to be reworked to work with idmap without calling winbind code.
simo
(This used to be commit 9d7d007443fc75264b2764b90f272ffc40c9be6c)
Diffstat (limited to 'source3/nsswitch/winbindd.c')
-rw-r--r-- | source3/nsswitch/winbindd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index ff21a4644f..1be5a18c7c 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -128,7 +128,6 @@ static void winbindd_status(void) static void print_winbindd_status(void) { winbindd_status(); - winbindd_idmap_status(); winbindd_cm_status(); } @@ -146,7 +145,7 @@ static void terminate(void) { pstring path; - winbindd_idmap_close(); + idmap_close(); /* Remove socket file */ snprintf(path, sizeof(path), "%s/%s", @@ -755,7 +754,7 @@ BOOL winbind_setup_common(void) /* Winbind daemon initialisation */ - if (!winbindd_idmap_init()) + if (!idmap_init()) return False; /* Unblock all signals we are interested in as they may have been |