summaryrefslogtreecommitdiff
path: root/source3/libads/krb5_setpw.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-10-09 11:05:42 +0200
committerGünther Deschner <gd@samba.org>2008-10-15 21:43:50 +0200
commite9e12460217e421e44715b603ddbf57e5a889def (patch)
tree05954745423f174b10d7dd91cb54a7192ee6d5e8 /source3/libads/krb5_setpw.c
parenta1b7b6d5b41df3585f2cd2ad5b5fca2fe22b1a40 (diff)
downloadsamba-e9e12460217e421e44715b603ddbf57e5a889def.tar.gz
samba-e9e12460217e421e44715b603ddbf57e5a889def.tar.bz2
samba-e9e12460217e421e44715b603ddbf57e5a889def.zip
kerberos: fix some heimdal build warnings.
Guenther
Diffstat (limited to 'source3/libads/krb5_setpw.c')
-rw-r--r--source3/libads/krb5_setpw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/libads/krb5_setpw.c b/source3/libads/krb5_setpw.c
index 719f3bd3ec..0ff9f2ba32 100644
--- a/source3/libads/krb5_setpw.c
+++ b/source3/libads/krb5_setpw.c
@@ -285,7 +285,7 @@ static krb5_error_code parse_setpw_reply(krb5_context context,
return KRB5KRB_AP_ERR_MODIFIED;
}
- p = packet->data;
+ p = (char *)packet->data;
/*
** see if it is an error
*/
@@ -368,7 +368,7 @@ static krb5_error_code parse_setpw_reply(krb5_context context,
return KRB5KRB_AP_ERR_MODIFIED;
}
- p = clearresult.data;
+ p = (char *)clearresult.data;
res_code = RSVAL(p, 0);
@@ -687,10 +687,10 @@ kerb_prompter(krb5_context ctx, void *data,
memset(prompts[0].reply->data, 0, prompts[0].reply->length);
if (prompts[0].reply->length > 0) {
if (data) {
- strncpy(prompts[0].reply->data,
+ strncpy((char *)prompts[0].reply->data,
(const char *)data,
prompts[0].reply->length-1);
- prompts[0].reply->length = strlen(prompts[0].reply->data);
+ prompts[0].reply->length = strlen((const char *)prompts[0].reply->data);
} else {
prompts[0].reply->length = 0;
}