]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
dbwrap: Fix structure initialization
authorAmitay Isaacs <amitay@gmail.com>
Sun, 7 Aug 2016 07:56:51 +0000 (17:56 +1000)
committerVolker Lendecke <vl@samba.org>
Tue, 9 Aug 2016 13:15:43 +0000 (15:15 +0200)
Bug: https://bugzilla.samba.org/show_bug.cgi?id=12134
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Tue Aug  9 15:15:43 CEST 2016 on sn-devel-144

source3/lib/dbwrap/dbwrap_watch.c

index 6d3abe0a372965bd474bb0e12c4e46f7811549ae..acc0f1a5e68dfe4c5f896a4e6e8688419cadd16d 100644 (file)
@@ -534,7 +534,8 @@ static NTSTATUS dbwrap_watched_parse_record(
        struct db_watched_ctx *ctx = talloc_get_type_abort(
                db->private_data, struct db_watched_ctx);
        struct dbwrap_watched_parse_record_state state = {
-               .parser = parser, private_data = private_data,
+               .parser = parser,
+               .private_data = private_data,
                .deleted = false
        };
        NTSTATUS status;