summaryrefslogtreecommitdiff
path: root/source3/passdb/machine_sid.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-02-08 11:05:34 +0000
committerAndrew Bartlett <abartlet@samba.org>2004-02-08 11:05:34 +0000
commit46975eb92feb34ea64fb31448672b81bd2febea0 (patch)
tree5bcac6e841c5c9336ec2f84af165a8c9ad6dea8c /source3/passdb/machine_sid.c
parentb401888b6be6f3cd9cdd8187dc74521eb3207f9c (diff)
downloadsamba-46975eb92feb34ea64fb31448672b81bd2febea0.tar.gz
samba-46975eb92feb34ea64fb31448672b81bd2febea0.tar.bz2
samba-46975eb92feb34ea64fb31448672b81bd2febea0.zip
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 a4392ede33019b7584bf6a2d8445adb5191e640f)
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);
+}