[Date Prev][Date Next] [Chronological] [Thread] [Top]

test007-replication fails (ITS#768)



Full_Name: Karsten Kuenne
Version: 2.0.4
OS: Solaris 7
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (131.169.137.150)


I compiled 2.0.4 on Solaris 7 with the Sun Workshop Compiler and apparently the
Ri structure in slurpd got not initialized properly. During test007 slurpd tried
to
fiddle with TLS and of course failed because it's not set up in this test. The
following small change fixed it for me.

*** ./servers/slurpd/config.c.orig      Fri Sep 22 20:03:09 2000
--- ./servers/slurpd/config.c   Fri Sep 22 20:04:44 2000
***************
*** 332,337 ****
--- 332,338 ----
      int               i;
      char      *hp, *val;
  
+     ri->ri_tls = TLS_OFF;
      for ( i = 1; i < cargc; i++ ) {
        if ( !strncasecmp( cargv[ i ], HOSTSTR, strlen( HOSTSTR ))) {
            val = cargv[ i ] + strlen( HOSTSTR ) + 1;


Karsten.