From: Volker Lendecke Date: Thu, 15 Aug 2019 14:33:57 +0000 (+0200) Subject: smbd: Make "current_state" show up first in the blob X-Git-Tag: talloc-2.3.1~823 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8d63b622df42111b603d5f6fe2fa31490eb7cd98;p=thirdparty%2Fsamba.git smbd: Make "current_state" show up first in the blob Believe it or not, but without this change "num_files" was first. Thanks Metze for this (to me at least) really, really surprising insight! Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/librpc/idl/leases_db.idl b/source3/librpc/idl/leases_db.idl index ed9f27643ab..2551dfc2ba0 100644 --- a/source3/librpc/idl/leases_db.idl +++ b/source3/librpc/idl/leases_db.idl @@ -49,6 +49,6 @@ interface leases_db uint16 epoch; uint32 num_files; - [size_is(num_files)] leases_db_file files[]; + leases_db_file files[num_files]; } leases_db_value; }