diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-02-04 23:04:35 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-02-04 23:04:35 +1100 |
commit | 7e15e09f677f0167dd6b1cec2ccacdd8608e02c7 (patch) | |
tree | e859378abd91e622a0eeb7e0053a22366d0cf437 /source4/cluster | |
parent | 0f8eeb81ec109cde681961614fb690f8373fa9c6 (diff) | |
download | samba-7e15e09f677f0167dd6b1cec2ccacdd8608e02c7.tar.gz samba-7e15e09f677f0167dd6b1cec2ccacdd8608e02c7.tar.bz2 samba-7e15e09f677f0167dd6b1cec2ccacdd8608e02c7.zip |
Fix a few more breakages from our recent changes to the server_id
structure. The BASE-TORTURE test found this problem - caused because
the messaging path was not unique.
If we didn't use a macro for cluster_id_equal(), we could make it
opaque, and avoid this...
Andrew Bartlett
(This used to be commit c3387545c57d2dd4922b4f3806b4552cee8035a3)
Diffstat (limited to 'source4/cluster')
-rw-r--r-- | source4/cluster/cluster.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/cluster/cluster.h b/source4/cluster/cluster.h index 203aef439c..7545757f2c 100644 --- a/source4/cluster/cluster.h +++ b/source4/cluster/cluster.h @@ -25,7 +25,9 @@ /* test for same cluster id */ -#define cluster_id_equal(id1, id2) ((id1)->id == (id2)->id && (id1)->node == (id2)->node) +#define cluster_id_equal(id_1, id_2) ((id_1)->id == (id_2)->id \ + && (id_1)->id2 == (id_2)->id2 \ + && (id_1)->node == (id_2)->node) /* test for same cluster node |