1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-25 06:04:04 +03:00

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>
This commit is contained in:
Volker Lendecke 2019-08-15 16:33:57 +02:00 committed by Jeremy Allison
parent 735439765a
commit 8d63b622df

View File

@ -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;
}