diff options
author | Volker Lendecke <vl@samba.org> | 2009-12-24 12:51:09 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-12-26 12:26:06 +0100 |
commit | b911a7b2d4b3c679487a72aa12e9c63546c9235a (patch) | |
tree | ed12bc521a972f07fbef4dbd518654dbc771429f /source3 | |
parent | ef453c63af3d29c428029aa39a5b59b0317c76ce (diff) | |
download | samba-b911a7b2d4b3c679487a72aa12e9c63546c9235a.tar.gz samba-b911a7b2d4b3c679487a72aa12e9c63546c9235a.tar.bz2 samba-b911a7b2d4b3c679487a72aa12e9c63546c9235a.zip |
s3: getgrent_state has been replaced by grent_state
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/winbindd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index 597957d9d6..3f7a44e9dc 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -857,7 +857,7 @@ static bool remove_idle_client(void) for (state = winbindd_client_list(); state; state = state->next) { if (state->response == NULL && - !state->pwent_state && !state->getgrent_state) { + !state->pwent_state && !state->grent_state) { nidle++; if (!last_access || state->last_access < last_access) { last_access = state->last_access; |