From 1539c2f34b52b3fbc7ff2f9e7515f04f5aaf0f5d Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 15 Nov 2001 06:53:47 +0000 Subject: Jeremy, I'm not sure what you were trying to do with the process activity loop in winbindd but it didn't work. (This used to be commit 3ac32af83849e93c83cd1bb48dc7d23e47ccac59) --- source3/nsswitch/winbindd.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source3/nsswitch/winbindd.c') diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index 7a88711e79..c6a2f80336 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -596,7 +596,7 @@ static void process_loop(int accept_sock) /* Process activity on client connections */ - for (state = client_list; state; ) { + for (state = client_list; state; state = state->next) { /* Data available for reading */ @@ -637,8 +637,6 @@ static void process_loop(int accept_sock) sizeof(state->request)) { process_packet(state); } - - state = state->next; } /* Data available for writing */ -- cgit