From c033b2dd2d09e3699e0756c8cc21388e383d8fd7 Mon Sep 17 00:00:00 2001 From: Anatoliy Atanasov Date: Tue, 25 Aug 2009 18:39:06 +0300 Subject: Fix for DSSYNC test against Windows 2003 --- librpc/ndr/ndr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/librpc/ndr/ndr.c b/librpc/ndr/ndr.c index 8188ec998f..7d4a2bc09c 100644 --- a/librpc/ndr/ndr.c +++ b/librpc/ndr/ndr.c @@ -255,6 +255,7 @@ _PUBLIC_ void ndr_print_function_debug(ndr_print_function_t fn, const char *name ndr->print = ndr_print_debug_helper; ndr->depth = 1; ndr->flags = 0; + ndr->iconv_convenience = smb_iconv_convenience_init(talloc_autofree_context(), "ASCII", "UTF-8", true); fn(ndr, name, flags, ptr); talloc_free(ndr); } -- cgit