]> git.sur5r.net Git - openldap/commitdiff
Fix tid vs thread typo
authorKurt Zeilenga <kurt@openldap.org>
Tue, 17 Aug 1999 00:10:43 +0000 (00:10 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 17 Aug 1999 00:10:43 +0000 (00:10 +0000)
libraries/libldap_r/thr_cthreads.c

index f6526b16ed083084e7a6c0ae9a0a27cac39bba83..5eda39c798f291dd0bfe42a4e941ed04faf95400 100644 (file)
@@ -53,7 +53,7 @@ int
 ldap_pvt_thread_join( ldap_pvt_thread_t thread, void **thread_return )
 {
        void *status;
-       status = (void *) cthread_join ( tid );
+       status = (void *) cthread_join ( thread );
        if (thread_return != NULL)
                {
                *thread_return = status;