diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-04 20:31:02 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-05 11:06:32 +0200 |
commit | 2838047657d5ba37b1ba0259577875919c47b09c (patch) | |
tree | 544dbc00233aacb7b8d94f01bb269d86b3ef768d /source3/lib/serverid.c | |
parent | 390c3ffc2a5ec90ad0715c278ecef56a6c1bd9b2 (diff) | |
download | samba-2838047657d5ba37b1ba0259577875919c47b09c.tar.gz samba-2838047657d5ba37b1ba0259577875919c47b09c.tar.xz samba-2838047657d5ba37b1ba0259577875919c47b09c.zip |
s3: Put serverid_key and serverid_data together
Diffstat (limited to 'source3/lib/serverid.c')
-rw-r--r-- | source3/lib/serverid.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/lib/serverid.c b/source3/lib/serverid.c index 74effa4c31d..fc17b4a680e 100644 --- a/source3/lib/serverid.c +++ b/source3/lib/serverid.c @@ -27,6 +27,11 @@ struct serverid_key { #endif }; +struct serverid_data { + uint64_t unique_id; + uint32_t msg_flags; +}; + bool serverid_parent_init(void) { struct tdb_wrap *db; @@ -49,11 +54,6 @@ bool serverid_parent_init(void) return true; } -struct serverid_data { - uint64_t unique_id; - uint32_t msg_flags; -}; - static struct db_context *serverid_db(void) { static struct db_context *db; |