summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-08-11 11:20:38 +0200
committerKarolin Seeger <kseeger@samba.org>2008-08-12 08:19:03 +0200
commit9936dd1f611c275a38b9e5148bc6bf383bc306c0 (patch)
treee93de3f67649484667dbcc450579cdee5933a5f9 /source
parent2525fd971e650de009cc10b4cedd4c49c1a43ed0 (diff)
downloadsamba-9936dd1f611c275a38b9e5148bc6bf383bc306c0.tar.gz
samba-9936dd1f611c275a38b9e5148bc6bf383bc306c0.tar.xz
samba-9936dd1f611c275a38b9e5148bc6bf383bc306c0.zip
fix build warning.
Guenther (cherry picked from commit eb7c3dc2ca92ef7885eef8f89e4397b5df486b65)
Diffstat (limited to 'source')
-rw-r--r--source/libsmb/clikrb5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libsmb/clikrb5.c b/source/libsmb/clikrb5.c
index f20723661f5..d30cc54cce6 100644
--- a/source/libsmb/clikrb5.c
+++ b/source/libsmb/clikrb5.c
@@ -1837,7 +1837,7 @@ static krb5_error_code ads_krb5_get_fwd_ticket( krb5_context context,
(APPLICATION 22) so that we can pack it on the end of the structure.
*/
- pChksum = SMB_MALLOC(GSSAPI_CHECKSUM_SIZE + fwdData.length );
+ pChksum = (char *)SMB_MALLOC(GSSAPI_CHECKSUM_SIZE + fwdData.length );
if (!pChksum) {
retval = ENOMEM;
goto out;