The Samba-Bugzilla – Attachment 3318 Details for
Bug 5489
Winbind in Samba 3.0.29 doesn't work on PDC
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
look (text/plain), 746 bytes, created by
Jeremy Allison
on 2008-05-28 18:42:43 UTC
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2008-05-28 18:42:43 UTC
Size:
746 bytes
patch
obsolete
>diff --git a/source/nsswitch/winbindd_util.c b/source/nsswitch/winbindd_util.c >index ecd919d..4de7a3f 100644 >--- a/source/nsswitch/winbindd_util.c >+++ b/source/nsswitch/winbindd_util.c >@@ -153,7 +153,13 @@ static struct winbindd_domain *add_trusted_domain(const char *domain_name, const > > domain->methods = methods; > domain->backend = NULL; >- domain->internal = is_internal_domain(sid); >+ /* If we're running on a Samba PDC we should contact >+ * our local smbd, not handle things within winbindd. */ >+ if (IS_DC && sid_check_is_domain(sid)) { >+ domain->internal = false; >+ } else { >+ domain->internal = is_internal_domain(sid); >+ } > domain->sequence_number = DOM_SEQUENCE_NONE; > domain->last_seq_check = 0; > domain->initialized = False;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 5489
:
3312
|
3317
| 3318