mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
Use large enough unsigned values in server_id IDL
This matches what we have in struct server_id. Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
8a3d548ee7
commit
8ed6523b6c
@ -9,10 +9,10 @@ interface server_id
|
||||
* Ctdbd sets this, we retrieve our vnn from it.
|
||||
*/
|
||||
|
||||
const int NONCLUSTER_VNN = 0xFFFFFFFF;
|
||||
const uint32 NONCLUSTER_VNN = 0xFFFFFFFF;
|
||||
|
||||
/** Don't verify this unique id */
|
||||
const int SERVERID_UNIQUE_ID_NOT_TO_VERIFY = 0xFFFFFFFFFFFFFFFFULL;
|
||||
const hyper SERVERID_UNIQUE_ID_NOT_TO_VERIFY = 0xFFFFFFFFFFFFFFFFULL;
|
||||
|
||||
/* used to look like the following, note that unique_id was not
|
||||
* marshalled at all...
|
||||
|
Loading…
Reference in New Issue
Block a user