From 9877f3d574392681ef121f8c9c038596f6d333dc Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 16 Feb 2009 16:41:48 +0100 Subject: s4-spoolss: fix spoolss server after out,ref count pointer changes. Guenther --- source4/ntptr/simple_ldb/ntptr_simple_ldb.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'source4/ntptr') diff --git a/source4/ntptr/simple_ldb/ntptr_simple_ldb.c b/source4/ntptr/simple_ldb/ntptr_simple_ldb.c index 073fd9992c..c570b03a35 100644 --- a/source4/ntptr/simple_ldb/ntptr_simple_ldb.c +++ b/source4/ntptr/simple_ldb/ntptr_simple_ldb.c @@ -260,7 +260,7 @@ static WERROR sptr_EnumPrintServerForms(struct ntptr_GenericHandle *server, TALL } r->out.info = info; - r->out.count = count; + *r->out.count = count; return WERR_OK; } @@ -588,7 +588,7 @@ static WERROR sptr_EnumPrinters(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx } r->out.info = info; - r->out.count = count; + *r->out.count = count; return WERR_OK; } @@ -646,7 +646,7 @@ static WERROR sptr_EnumPorts(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx, } r->out.info = info; - r->out.count = count; + *r->out.count = count; return WERR_OK; } @@ -693,8 +693,7 @@ static WERROR sptr_EnumMonitors(struct ntptr_context *ntptr, TALLOC_CTX *mem_ctx } r->out.info = info; - r->out.count = count; - return WERR_OK; + *r->out.count = count; return WERR_OK; } -- cgit