Changeset 3899
- Timestamp:
- 03/15/06 21:30:32 (3 years ago)
- Files:
-
- wired/trunk/wired/accounts.c (modified) (1 diff)
- wired/trunk/wired/accounts.h (modified) (1 diff)
- wired/trunk/wired/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wired/trunk/wired/accounts.c
r3863 r3899 594 594 595 595 596 void wd_accounts_reload_users(void) { 597 wi_list_node_t *node; 598 wd_client_t *client; 599 600 wi_list_rdlock(wd_clients); 601 WI_LIST_FOREACH(wd_clients, node, client) 602 _wd_accounts_reload_client(client); 603 wi_list_unlock(wd_clients); 604 } 605 606 607 596 608 #pragma mark - 597 609 wired/trunk/wired/accounts.h
r3863 r3899 83 83 wi_boolean_t wd_accounts_clear_group(wi_string_t *); 84 84 wi_boolean_t wd_accounts_check_privileges(wd_account_t *account); 85 void wd_accounts_reload_users(void); 85 86 86 87 void wd_reply_privileges(void); wired/trunk/wired/main.c
r3849 r3899 432 432 case SIGHUP: 433 433 wi_log_info(WI_STR("Signal HUP received, reloading configuration")); 434 434 435 wd_read_config(); 435 436 wd_apply_config(); 436 437 wd_schedule_config(); 438 439 wd_accounts_reload_users(); 437 440 break; 438 441
