]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
2nd arg of _thread_create() is an int, not a pointer to an attribute.
authorKurt Zeilenga <kurt@openldap.org>
Tue, 20 Apr 1999 21:58:53 +0000 (21:58 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 20 Apr 1999 21:58:53 +0000 (21:58 +0000)
s/NULL/0/

servers/slurpd/replica.c

index 8e919b274a887824f97465b44af7a278fa7246f9..a75f22dfb355741f0d5269bd3781a95a1dcd0e77 100644 (file)
@@ -55,7 +55,7 @@ start_replica_thread(
 )
 {
     /* POSIX_THREADS or compatible */
-    if ( ldap_pvt_thread_create( &(ri->ri_tid), NULL, replicate,
+    if ( ldap_pvt_thread_create( &(ri->ri_tid), 0, replicate,
            (void *) ri ) != 0 ) {
        Debug( LDAP_DEBUG_ANY, "replica \"%s:%d\" ldap_pvt_thread_create failed\n",
                ri->ri_hostname, ri->ri_port, 0 );