summaryrefslogtreecommitdiff
path: root/source3/auth/auth_rhosts.c
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2001-10-23 20:39:38 +0000
committerHerb Lewis <herb@samba.org>2001-10-23 20:39:38 +0000
commitb8fe0f6711977412f8a7103022b01f3428d9c3a0 (patch)
tree3786997930c8a49b9b92acff37df213919b151f9 /source3/auth/auth_rhosts.c
parent9e9b503024ba71fee9af40c8953b24d1632ce25a (diff)
downloadsamba-b8fe0f6711977412f8a7103022b01f3428d9c3a0.tar.gz
samba-b8fe0f6711977412f8a7103022b01f3428d9c3a0.tar.bz2
samba-b8fe0f6711977412f8a7103022b01f3428d9c3a0.zip
more compiler warnings
(This used to be commit 12c10e876ea528fdf33e8ecfe42ab0ebb346b143)
Diffstat (limited to 'source3/auth/auth_rhosts.c')
-rw-r--r--source3/auth/auth_rhosts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_rhosts.c b/source3/auth/auth_rhosts.c
index cd1bf57f86..d6ca01936f 100644
--- a/source3/auth/auth_rhosts.c
+++ b/source3/auth/auth_rhosts.c
@@ -86,7 +86,7 @@ static BOOL check_user_equiv(const char *user, const char *remote, const char *e
static char *mydomain = NULL;
if (!mydomain)
yp_get_default_domain(&mydomain);
- if (mydomain && innetgr(file_host,remote,user,mydomain))
+ if (mydomain && innetgr(file_host,(char *)remote,(char *)user,mydomain))
host_ok = True;
}
#else