diff options
Diffstat (limited to 'source3/nsswitch/winbindd.c')
-rw-r--r-- | source3/nsswitch/winbindd.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index 256c0203c0..358d9add3a 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -25,7 +25,7 @@ /* List of all connected clients */ -static struct winbindd_cli_state *client_list; +struct winbindd_cli_state *client_list; static int num_clients; BOOL opt_nocache = False; BOOL opt_dual_daemon = False; @@ -375,9 +375,6 @@ void winbind_process_packet(struct winbindd_cli_state *state) { /* Process request */ - /* Ensure null termination of entire request */ - state->request.domain[sizeof(state->request.domain)-1]='\0'; - state->pid = state->request.pid; process_request(state); @@ -691,8 +688,6 @@ int winbind_setup_common(void) } - namecache_enable(); /* Enable netbios namecache */ - /* Get list of domains we look up requests for. This includes the domain which we are a member of as well as any trusted domains. */ |