diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-09-16 16:13:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:03:39 -0500 |
commit | 3368280b9402dea06d905c27f9b381556017aafe (patch) | |
tree | fe08be7629286152d1bbc430c075ba60a1f71276 /source3/nsswitch/winbindd_util.c | |
parent | fbcaef3bf662b4a46ce7e131ae6bd04c3b735433 (diff) | |
download | samba-3368280b9402dea06d905c27f9b381556017aafe.tar.gz samba-3368280b9402dea06d905c27f9b381556017aafe.tar.bz2 samba-3368280b9402dea06d905c27f9b381556017aafe.zip |
r10267: Exit if winbind can't find or generate a SID -- there's no point in
continuing. Found during investigation of bug 3105.
Volker
(This used to be commit 72546f185696235c9d5cb6196448178d9e15e858)
Diffstat (limited to 'source3/nsswitch/winbindd_util.c')
-rw-r--r-- | source3/nsswitch/winbindd_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_util.c b/source3/nsswitch/winbindd_util.c index 46daef63ff..885cc4b64f 100644 --- a/source3/nsswitch/winbindd_util.c +++ b/source3/nsswitch/winbindd_util.c @@ -506,7 +506,7 @@ void init_domain_list(void) DOM_SID our_sid; if (!secrets_fetch_domain_sid(lp_workgroup(), &our_sid)) { - DEBUG(0, ("Could not fetch our SID - did we join?\n")); + smb_panic("Could not fetch our SID - did we join?\n"); } domain = add_trusted_domain( lp_workgroup(), lp_realm(), |