summaryrefslogtreecommitdiff
path: root/source3/libads/kerberos.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-11-06 10:25:53 +0100
committerGünther Deschner <gd@samba.org>2009-11-06 12:43:33 +0100
commitbb75f713d628073c503b06a3d217195aa95d72b2 (patch)
treed4b9bad1c9718a84893d204d4aa298cd96d95341 /source3/libads/kerberos.c
parent35dcc133c9c26d10186fe59ea096a2a5c87958e6 (diff)
downloadsamba-bb75f713d628073c503b06a3d217195aa95d72b2.tar.gz
samba-bb75f713d628073c503b06a3d217195aa95d72b2.tar.bz2
samba-bb75f713d628073c503b06a3d217195aa95d72b2.zip
s3-kerberos: fix some build warnings when building against heimdal.
Guenther
Diffstat (limited to 'source3/libads/kerberos.c')
-rw-r--r--source3/libads/kerberos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libads/kerberos.c b/source3/libads/kerberos.c
index c1e6c4ac38..89357b01fb 100644
--- a/source3/libads/kerberos.c
+++ b/source3/libads/kerberos.c
@@ -46,9 +46,9 @@ 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, (const char *)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;
}