diff options
author | Günther Deschner <gd@samba.org> | 2008-08-11 11:20:38 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-08-11 15:43:52 +0200 |
commit | c7257754cdda2e7137969417eb56481192b0654a (patch) | |
tree | e7e921b299f3aa9f75eb2b34787fa4a661a1f2e2 /source3 | |
parent | 12ee6b832c7ff09010fc67122aaefcfce1cb712f (diff) | |
download | samba-c7257754cdda2e7137969417eb56481192b0654a.tar.gz samba-c7257754cdda2e7137969417eb56481192b0654a.tar.bz2 samba-c7257754cdda2e7137969417eb56481192b0654a.zip |
fix build warning.
Guenther
(This used to be commit 85021d6a459c957cc276a93c3515029244f52677)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/clikrb5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clikrb5.c b/source3/libsmb/clikrb5.c index 2052d5a1bc..5bb33b11d7 100644 --- a/source3/libsmb/clikrb5.c +++ b/source3/libsmb/clikrb5.c @@ -1877,7 +1877,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; |