summaryrefslogtreecommitdiffstats
path: root/source/smbd/msdfs.c
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/smbd/msdfs.c
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/smbd/msdfs.c')
-rw-r--r--source/smbd/msdfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/smbd/msdfs.c b/source/smbd/msdfs.c
index 916f661eaae..397d43b8bb2 100644
--- a/source/smbd/msdfs.c
+++ b/source/smbd/msdfs.c
@@ -717,7 +717,7 @@ static int setup_ver2_dfs_referral(const char *pathname,
STR_TERMINATE);
if (DEBUGLVL(10)) {
- dump_data(0, (const char *) uni_requestedpath,requestedpathlen);
+ dump_data(0, uni_requestedpath,requestedpathlen);
}
DEBUG(10,("ref count = %u\n",junction->referral_count));
@@ -817,7 +817,7 @@ static int setup_ver3_dfs_referral(const char *pathname,
reqpathlen = rpcstr_push(uni_reqpath, pathname, sizeof(pstring), STR_TERMINATE);
if (DEBUGLVL(10)) {
- dump_data(0, (char *) uni_reqpath,reqpathlen);
+ dump_data(0, uni_reqpath,reqpathlen);
}
uni_reqpathoffset1 = REFERRAL_HEADER_SIZE + VERSION3_REFERRAL_SIZE * junction->referral_count;
@@ -970,7 +970,7 @@ int setup_dfs_referral(connection_struct *orig_conn,
if (DEBUGLVL(10)) {
DEBUGADD(0,("DFS Referral pdata:\n"));
- dump_data(0,*ppdata,reply_size);
+ dump_data(0,(uint8 *)*ppdata,reply_size);
}
talloc_destroy(ctx);