summaryrefslogtreecommitdiffstats
path: root/source/librpc
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-03-28 13:34:59 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:18:59 -0500
commitfa322f0cc9c26a9537ba3f0a7d4e4a25941317e7 (patch)
treef4adb65254c3b9885ce23687df40f4822f4e5cb2 /source/librpc
parent8f55fe4e4614d73c2534ca87745972f7550875ee (diff)
downloadsamba-fa322f0cc9c26a9537ba3f0a7d4e4a25941317e7.tar.gz
samba-fa322f0cc9c26a9537ba3f0a7d4e4a25941317e7.tar.xz
samba-fa322f0cc9c26a9537ba3f0a7d4e4a25941317e7.zip
r22001: change prototype of dump_data(), so that it takes unsigned char * now,
which matches what samba4 has. also fix all the callers to prevent compiler warnings metze
Diffstat (limited to 'source/librpc')
-rw-r--r--source/librpc/ndr/ndr_basic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/librpc/ndr/ndr_basic.c b/source/librpc/ndr/ndr_basic.c
index 7fc290e5959..913dfc7e65d 100644
--- a/source/librpc/ndr/ndr_basic.c
+++ b/source/librpc/ndr/ndr_basic.c
@@ -741,7 +741,7 @@ void ndr_print_DATA_BLOB(struct ndr_print *ndr, const char *name, DATA_BLOB r)
{
ndr->print(ndr, "%-25s: DATA_BLOB length=%u", name, r.length);
if (r.length) {
- dump_data(10, (const char *)r.data, r.length);
+ dump_data(10, r.data, r.length);
}
}