summaryrefslogtreecommitdiff
path: root/source/ntptr
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-01-01 22:05:05 -0600
committerStefan Metzmacher <metze@samba.org>2008-01-01 16:12:11 -0600
commit61ad78ac98937ef7a9aa32075a91a1c95b7606b3 (patch)
tree32fcc47aaa4f4fd52c5a426fb027e69b8b451b8b /source/ntptr
parent84f1e82d8fe5ecca75e2d7048d1b8b409abcb9b7 (diff)
downloadsamba-61ad78ac98937ef7a9aa32075a91a1c95b7606b3.tar.gz
r26638: libndr: Require explicitly specifying iconv_convenience for ndr_struct_push_blob().
Diffstat (limited to 'source/ntptr')
-rw-r--r--source/ntptr/simple_ldb/ntptr_simple_ldb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/ntptr/simple_ldb/ntptr_simple_ldb.c b/source/ntptr/simple_ldb/ntptr_simple_ldb.c
index 4e6586db65d..f311966422c 100644
--- a/source/ntptr/simple_ldb/ntptr_simple_ldb.c
+++ b/source/ntptr/simple_ldb/ntptr_simple_ldb.c
@@ -175,7 +175,7 @@ static WERROR sptr_GetPrintServerData(struct ntptr_GenericHandle *server, TALLOC
os.build = dcesrv_common_get_version_build(mem_ctx, server->ntptr->lp_ctx);
os.extra_string = "";
- ndr_err = ndr_push_struct_blob(&blob, mem_ctx, &os, (ndr_push_flags_fn_t)ndr_push_spoolss_OSVersion);
+ ndr_err = ndr_push_struct_blob(&blob, mem_ctx, lp_iconv_convenience(global_loadparm), &os, (ndr_push_flags_fn_t)ndr_push_spoolss_OSVersion);
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
return WERR_GENERAL_FAILURE;
}
@@ -195,7 +195,7 @@ static WERROR sptr_GetPrintServerData(struct ntptr_GenericHandle *server, TALLOC
os_ex.unknown2 = 0;
os_ex.unknown3 = 0;
- ndr_err = ndr_push_struct_blob(&blob, mem_ctx, &os_ex, (ndr_push_flags_fn_t)ndr_push_spoolss_OSVersionEx);
+ ndr_err = ndr_push_struct_blob(&blob, mem_ctx, lp_iconv_convenience(global_loadparm), &os_ex, (ndr_push_flags_fn_t)ndr_push_spoolss_OSVersionEx);
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
return WERR_GENERAL_FAILURE;
}