summaryrefslogtreecommitdiff
path: root/source3/utils/net_lookup.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-12-03 06:58:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:05:42 -0500
commita168730dda8f6917bf89d82824060cdd815c7297 (patch)
tree5748e06fd42c9687322f22b7a4ac4655cee1612e /source3/utils/net_lookup.c
parentd1f91f7c723733113b4e9792042101c80dfc064c (diff)
downloadsamba-a168730dda8f6917bf89d82824060cdd815c7297.tar.gz
samba-a168730dda8f6917bf89d82824060cdd815c7297.tar.bz2
samba-a168730dda8f6917bf89d82824060cdd815c7297.zip
r12045: More warning fixes... Just a few more to go.
Jeremy. (This used to be commit cd192ed79a531c6775cdbfb35f0eb2e0fa230ce9)
Diffstat (limited to 'source3/utils/net_lookup.c')
-rw-r--r--source3/utils/net_lookup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_lookup.c b/source3/utils/net_lookup.c
index cd62245600..8ee63515d4 100644
--- a/source3/utils/net_lookup.c
+++ b/source3/utils/net_lookup.c
@@ -211,7 +211,7 @@ static int net_lookup_kdc(int argc, const char **argv)
realm.length = strlen(realm.data);
}
- rc = krb5_locate_kdc(ctx, &realm, (struct sockaddr **) &addrs, &num_kdcs, 0);
+ rc = krb5_locate_kdc(ctx, &realm, (struct sockaddr **)(void *)&addrs, &num_kdcs, 0);
if (rc) {
DEBUG(1, ("krb5_locate_kdc failed (%s)\n", error_message(rc)));
return -1;