From: Howard Chu Date: Wed, 17 Mar 2004 09:59:03 +0000 (+0000) Subject: Fix prev commit X-Git-Tag: OPENLDAP_REL_ENG_2_2_BP~250 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cee3acea0902f62d999a58f70f74d8d4244a8088;p=openldap Fix prev commit --- diff --git a/libraries/libldap_r/thr_nt.c b/libraries/libldap_r/thr_nt.c index 8b7a7f60e9..5919ee6d49 100644 --- a/libraries/libldap_r/thr_nt.c +++ b/libraries/libldap_r/thr_nt.c @@ -29,7 +29,7 @@ typedef struct ldap_int_thread_s { #define NT_MAX_THREADS 1024 #endif -static ldap_int_thread_s tid[NT_MAX_THREADS]; +static ldap_int_thread_s tids[NT_MAX_THREADS]; static int ntids; @@ -63,8 +63,8 @@ ldap_pvt_thread_create( ldap_pvt_thread_t * thread, if ( thd ) { *thread = (ldap_pvt_thread_t) tid; - tid[ntids].tid = tid; - tid[ntids].thd = thd; + tids[ntids].tid = tid; + tids[ntids].thd = thd; ntids++; rc = 0; } @@ -84,14 +84,14 @@ ldap_pvt_thread_join( ldap_pvt_thread_t thread, void **thread_return ) int i; for (i=0; i ntids ) return -1; - status = WaitForSingleObject( tid[i].thd, INFINITE ); + status = WaitForSingleObject( tids[i].thd, INFINITE ); for (; i