summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/lib/util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 49cd7719e3..3559b45edc 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -2066,6 +2066,9 @@ bool procid_equal(const struct server_id *p1, const struct server_id *p2)
return False;
if (p1->vnn != p2->vnn)
return False;
+ if (p1->unique_id != p2->unique_id) {
+ return false;
+ }
return True;
}