From 69e41084b94ea90a70d507e570ca71eb82353ecb Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 7 Apr 2003 06:43:16 +0000 Subject: privilaged -> privileged (This changes the location of the winbindd privileged pipe) (This used to be commit f111f10076c7797e5fd39edcc0aad7d860bb5ac5) --- source3/nsswitch/winbindd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/nsswitch/winbindd.c') diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index 5cdddb6222..c096ca9b0f 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -287,7 +287,7 @@ static void process_request(struct winbindd_cli_state *state) /* Process a new connection by adding it to the client connection list */ -static void new_connection(int listen_sock, BOOL privilaged) +static void new_connection(int listen_sock, BOOL privileged) { struct sockaddr_un sunaddr; struct winbindd_cli_state *state; @@ -318,7 +318,7 @@ static void new_connection(int listen_sock, BOOL privilaged) state->last_access = time(NULL); - state->privilaged = privilaged; + state->privileged = privileged; /* Add to connection list */ @@ -639,7 +639,7 @@ static void process_loop(void) break; } } - /* new, non-privilaged connection */ + /* new, non-privileged connection */ new_connection(listen_sock, False); } @@ -653,7 +653,7 @@ static void process_loop(void) break; } } - /* new, privilaged connection */ + /* new, privileged connection */ new_connection(listen_priv_sock, True); } -- cgit