summaryrefslogtreecommitdiff
path: root/source3/librpc
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2019-08-15 16:33:57 +0200
committerJeremy Allison <jra@samba.org>2019-09-17 22:49:36 +0000
commit8d63b622df42111b603d5f6fe2fa31490eb7cd98 (patch)
treedd9fbb0768ce0bafee8dc78816535cfdc0493b04 /source3/librpc
parent735439765a29b0b31e530998e0d46b11c298c50b (diff)
downloadsamba-8d63b622df42111b603d5f6fe2fa31490eb7cd98.tar.gz
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 <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/librpc')
-rw-r--r--source3/librpc/idl/leases_db.idl2
1 files changed, 1 insertions, 1 deletions
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;
}