]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap_r/thr_cthreads.c
Clarify error string, add comment
[openldap] / libraries / libldap_r / thr_cthreads.c
index f6526b16ed083084e7a6c0ae9a0a27cac39bba83..8d3949aa989aba76efaf07bf3df019538b2bcd0f 100644 (file)
@@ -1,3 +1,4 @@
+/* $OpenLDAP$ */
 /*
  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
  * All rights reserved.
@@ -53,7 +54,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;