I *hate* global variables...
authorAndrew Bartlett <abartlet@samba.org>
Wed, 25 Feb 2004 22:01:02 +0000 (22:01 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 25 Feb 2004 22:01:02 +0000 (22:01 +0000)
commit86ad04d26d3065a99b08afaaf2914968a9e701c5
tree511ebc4348a8f32a1729a90549fc6eb5ab4c57d6
parentd448fb801e175e11cfc0118325043eef836103f0
I *hate* global variables...

OK, what was happening here was that we would invalidate global_sam_sid
when we set the sid into secrets.tdb, to force a re-read.

The problem was, we would do *two* writes into the TDB, and the second one
(in the PDC/BDC case) would be of a NULL pointer.  This caused smbd startups
to fail, on a blank TDB.

By using a local variable in the pdb_generate_sam_sid() code, we avoid this
particular trap.

I've also added better debugging for the case where this all matters, which
is particularly for LDAP, where it finds out a domain SID from the sambaDomain
object.

Andrew Bartlett
source/passdb/machine_sid.c
source/passdb/pdb_ldap.c
source/utils/net.c
source/utils/smbpasswd.c