Author: jerry
Date: 2005-08-16 21:16:13 +0000 (Tue, 16 Aug 2005)
New Revision: 9331

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=9331

Log:
trying to syncronize a litle with SAMBA_3_0
Modified:
   trunk/source/nsswitch/winbindd.c


Changeset:
Modified: trunk/source/nsswitch/winbindd.c
===================================================================
--- trunk/source/nsswitch/winbindd.c    2005-08-16 21:15:41 UTC (rev 9330)
+++ trunk/source/nsswitch/winbindd.c    2005-08-16 21:16:13 UTC (rev 9331)
@@ -733,25 +733,6 @@
        return False;
 }
 
-/* Process a complete received packet from a client */
-
-void winbind_process_packet(struct winbindd_cli_state *state)
-{
-       /* Process request */
-       
-       /* Ensure null termination of entire request */
-       state->request.null_term = '\0';
-
-       state->pid = state->request.pid;
-
-       process_request(state);
-
-       /* Update client state */
-       
-       state->read_buf_len = 0;
-       state->write_buf_len = sizeof(struct winbindd_response);
-}
-
 /* Process incoming clients on listen_sock.  We use a tricky non-blocking,
    non-forking, non-threaded model which allows us to handle many
    simultaneous connections while remaining impervious to many denial of
@@ -843,8 +824,6 @@
                exit(1);
        }
 
-       /* Create a new connection if listen_sock readable */
-
        ev = fd_events;
        while (ev != NULL) {
                struct fd_event *next = ev->next;

Reply via email to