Changeset 732 for branches/samba-3.5.x/source3/winbindd/winbindd.c
- Timestamp:
- Nov 12, 2012, 4:35:55 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/winbindd/winbindd.c
r599 r732 904 904 struct winbindd_listen_state); 905 905 906 while (winbindd_num_clients() > 907 WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1) { 906 while (winbindd_num_clients() > lp_winbind_max_clients() - 1) { 908 907 DEBUG(5,("winbindd: Exceeding %d client " 909 908 "connections, removing idle " 910 "connection.\n", 911 WINBINDD_MAX_SIMULTANEOUS_CLIENTS)); 909 "connection.\n", lp_winbind_max_clients())); 912 910 if (!remove_idle_client()) { 913 911 DEBUG(0,("winbindd: Exceeding %d " 914 912 "client connections, no idle " 915 913 "connection found\n", 916 WINBINDD_MAX_SIMULTANEOUS_CLIENTS));914 lp_winbind_max_clients())); 917 915 break; 918 916 }
Note:
See TracChangeset
for help on using the changeset viewer.