summaryrefslogtreecommitdiff
path: root/source3/passdb/machine_sid.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-02-08 12:04:23 +0000
committerAndrew Bartlett <abartlet@samba.org>2004-02-08 12:04:23 +0000
commit37ef59d4c323a068b978b6beecef367f736b4a86 (patch)
tree84c004987bff575559025db8f8fa1a3c7946072e /source3/passdb/machine_sid.c
parent880f3b2952592133fb8da640aab73449e13f2ff6 (diff)
downloadsamba-37ef59d4c323a068b978b6beecef367f736b4a86.tar.gz
samba-37ef59d4c323a068b978b6beecef367f736b4a86.tar.bz2
samba-37ef59d4c323a068b978b6beecef367f736b4a86.zip
(merge from 3.0)
When we set a domain sid, force get_global_sam_sid() to do it's work again. This should ensure that the value it returns is always consistant. Andrew Bartlett (This used to be commit fb13c61d4eee943e44632a0d1ba57b19602d67a4)
Diffstat (limited to 'source3/passdb/machine_sid.c')
-rw-r--r--source3/passdb/machine_sid.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/passdb/machine_sid.c b/source3/passdb/machine_sid.c
index 4e7476781c..1fb3569f76 100644
--- a/source3/passdb/machine_sid.c
+++ b/source3/passdb/machine_sid.c
@@ -198,3 +198,10 @@ DOM_SID *get_global_sam_sid(void)
return global_sam_sid;
}
+/**
+ * Force get_global_sam_sid to requery the backends
+ */
+void reset_global_sam_sid()
+{
+ SAFE_FREE(global_sam_sid);
+}