summaryrefslogtreecommitdiff
path: root/source3/smbd/seal.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-10-13 12:32:44 +0200
committerGünther Deschner <gd@samba.org>2008-10-13 12:32:44 +0200
commit053da4ba0a52500a41b466812c5901b7d6b2adc0 (patch)
treee04e386d2e7a09d907e0337f4d68b48af32ce911 /source3/smbd/seal.c
parent167feb2c914f40abd7618eff5dd0c9cd80a063b6 (diff)
downloadsamba-053da4ba0a52500a41b466812c5901b7d6b2adc0.tar.gz
samba-053da4ba0a52500a41b466812c5901b7d6b2adc0.tar.bz2
samba-053da4ba0a52500a41b466812c5901b7d6b2adc0.zip
s3: fix another build warning.
Guenther
Diffstat (limited to 'source3/smbd/seal.c')
-rw-r--r--source3/smbd/seal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/smbd/seal.c b/source3/smbd/seal.c
index 18d8b643dd..3822ee191e 100644
--- a/source3/smbd/seal.c
+++ b/source3/smbd/seal.c
@@ -426,7 +426,7 @@ static NTSTATUS srv_enc_spnego_gss_negotiate(unsigned char **ppdata, size_t *p_d
data_blob_free(&auth_reply);
SAFE_FREE(*ppdata);
- *ppdata = memdup(response.data, response.length);
+ *ppdata = (unsigned char *)memdup(response.data, response.length);
if ((*ppdata) == NULL && response.length > 0) {
status = NT_STATUS_NO_MEMORY;
}
@@ -468,7 +468,7 @@ static NTSTATUS srv_enc_ntlm_negotiate(unsigned char **ppdata, size_t *p_data_si
}
SAFE_FREE(*ppdata);
- *ppdata = memdup(response.data, response.length);
+ *ppdata = (unsigned char *)memdup(response.data, response.length);
if ((*ppdata) == NULL && response.length > 0) {
status = NT_STATUS_NO_MEMORY;
}
@@ -595,7 +595,7 @@ static NTSTATUS srv_enc_spnego_ntlm_auth(connection_struct *conn,
}
SAFE_FREE(*ppdata);
- *ppdata = memdup(response.data, response.length);
+ *ppdata = (unsigned char *)memdup(response.data, response.length);
if ((*ppdata) == NULL && response.length > 0)
return NT_STATUS_NO_MEMORY;
*p_data_size = response.length;
@@ -649,7 +649,7 @@ static NTSTATUS srv_enc_raw_ntlm_auth(connection_struct *conn,
/* Return the raw blob. */
SAFE_FREE(*ppdata);
- *ppdata = memdup(response.data, response.length);
+ *ppdata = (unsigned char *)memdup(response.data, response.length);
if ((*ppdata) == NULL && response.length > 0)
return NT_STATUS_NO_MEMORY;
*p_data_size = response.length;