diff options
author | Herb Lewis <herb@samba.org> | 2002-02-13 17:20:22 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-02-13 17:20:22 +0000 |
commit | f3b38c491fd07612dfba062aca13a82b5614334c (patch) | |
tree | 3bb6a33479e5c25c196e631d76f9c85ba722409c /source/smbd/password.c | |
parent | 67501864d765f17ba3195f728e495ecbab968eea (diff) | |
download | samba-f3b38c491fd07612dfba062aca13a82b5614334c.tar.gz samba-f3b38c491fd07612dfba062aca13a82b5614334c.tar.xz samba-f3b38c491fd07612dfba062aca13a82b5614334c.zip |
get rid of compiler warning
Diffstat (limited to 'source/smbd/password.c')
-rw-r--r-- | source/smbd/password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/password.c b/source/smbd/password.c index 4ccade52cec..29c0cc7197c 100644 --- a/source/smbd/password.c +++ b/source/smbd/password.c @@ -670,7 +670,7 @@ static char *validate_group(const char *group,char *password,int pwlen,int snum) #ifdef HAVE_NETGROUP { char *host, *user, *domain; - setnetgrent(group); + setnetgrent((char *)group); while (getnetgrent(&host, &user, &domain)) { if (user) { if (user_ok(user, snum) && |