summaryrefslogtreecommitdiffstats
path: root/source/nsswitch/winbindd.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-11-15 06:53:47 +0000
committerTim Potter <tpot@samba.org>2001-11-15 06:53:47 +0000
commit3ac32af83849e93c83cd1bb48dc7d23e47ccac59 (patch)
tree556a5eab02a353840341acb3b3354409b2839797 /source/nsswitch/winbindd.c
parent4e6c57fefa25036877a93b9056d06c725a5964cc (diff)
downloadsamba-3ac32af83849e93c83cd1bb48dc7d23e47ccac59.tar.gz
samba-3ac32af83849e93c83cd1bb48dc7d23e47ccac59.tar.xz
samba-3ac32af83849e93c83cd1bb48dc7d23e47ccac59.zip
Jeremy, I'm not sure what you were trying to do with the process activity
loop in winbindd but it didn't work.
Diffstat (limited to 'source/nsswitch/winbindd.c')
-rw-r--r--source/nsswitch/winbindd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/nsswitch/winbindd.c b/source/nsswitch/winbindd.c
index 7a88711e790..c6a2f803364 100644
--- a/source/nsswitch/winbindd.c
+++ b/source/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 */