Author: metze Date: 2004-08-17 11:57:31 +0000 (Tue, 17 Aug 2004) New Revision: 1858
WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/&rev=1858&nolog=1 Log: fix compiler warnings metze Modified: trunk/source/nsswitch/winbindd_ldap.c Changeset: Modified: trunk/source/nsswitch/winbindd_ldap.c =================================================================== --- trunk/source/nsswitch/winbindd_ldap.c 2004-08-17 11:43:59 UTC (rev 1857) +++ trunk/source/nsswitch/winbindd_ldap.c 2004-08-17 11:57:31 UTC (rev 1858) @@ -480,7 +480,7 @@ while (client != NULL) { if (client->finished) { - struct winbindd_ldap_client *next = client->next; + struct winbind_ldap_client *next = client->next; DLIST_REMOVE(ldap_clients, client); close(client->sock); SAFE_FREE(client->in_buffer.data); @@ -508,7 +508,7 @@ while (server != NULL) { if (server->finished) { - struct winbindd_ldap_server *next = server->next; + struct winbind_ldap_server *next = server->next; DLIST_REMOVE(ldap_servers, server); close(server->sock); SAFE_FREE(server);
