From da35836dd50e7f8036ca79efafc4009eae58222f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 5 Jul 2010 10:05:27 +0200 Subject: s3: Keep the connections.tdb data format fixed At Simo's request, we can not change internal databases anymore. Sorry for not respecting this policy. --- source3/include/smb.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source3/include/smb.h b/source3/include/smb.h index 140d810582..507aeac53d 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -841,6 +841,12 @@ struct connections_data { char addr[24]; char machine[FSTRING_LEN]; time_t start; + + /* + * This field used to hold the msg_flags. For compatibility reasons, + * keep the data structure in the tdb file the same. + */ + uint32 unused_compatitibility_field; }; -- cgit