summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmitay Isaacs <amitay@gmail.com>2016-08-07 17:56:51 +1000
committerStefan Metzmacher <metze@samba.org>2016-08-10 11:24:38 +0200
commitfa0ffa25621d233bdfc7585ad6d70d08f89031cd (patch)
tree2271e3f595cf94a9fb819142eb45f92bd528934f
parent3688305421febfe7cdd7c5723d8d333e7f91a926 (diff)
downloadsamba-fa0ffa25621d233bdfc7585ad6d70d08f89031cd.tar.gz
dbwrap: Fix structure initialization
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 (cherry picked from commit afa41f023b4c3af067e401e53d2e89a8d568814a)
-rw-r--r--source3/lib/dbwrap/dbwrap_watch.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/dbwrap/dbwrap_watch.c b/source3/lib/dbwrap/dbwrap_watch.c
index 6d3abe0a372..acc0f1a5e68 100644
--- a/source3/lib/dbwrap/dbwrap_watch.c
+++ b/source3/lib/dbwrap/dbwrap_watch.c
@@ -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;