]> git.sur5r.net Git - openldap/commitdiff
Import ITS#255 cthread typo fix from -devel.
authorKurt Zeilenga <kurt@openldap.org>
Tue, 17 Aug 1999 00:11:38 +0000 (00:11 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 17 Aug 1999 00:11:38 +0000 (00:11 +0000)
libraries/liblthread/thr_cthreads.c

index 6eddb69317b61ca08c931c4c2ada18f1712d9a4b..97f0dc7f2c922069754e662a755e9808764e75c2 100644 (file)
@@ -47,7 +47,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;