Browse Source

Resolves: 197997
Summary: Fixed PTA config parsing to use a comma delimiter instread of a space.

Nathan Kinder 18 years ago
parent
commit
4f9128fd0a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ldap/servers/plugins/passthru/ptconfig.c

+ 1 - 1
ldap/servers/plugins/passthru/ptconfig.c

@@ -134,7 +134,7 @@ passthru_config( int argc, char **argv )
 	srvr = (PassThruServer *)slapi_ch_calloc( 1, sizeof( PassThruServer ));
 	srvr->ptsrvr_url = slapi_ch_strdup( argv[i] );
 
-	if (( p = strchr( srvr->ptsrvr_url, ' ' )) == NULL ) {
+	if (( p = strchr( srvr->ptsrvr_url, ',' )) == NULL ) {
 	    /*
 	     * use defaults for maxconnections, maxconcurrency, timeout,
 	     * LDAP version, and connlifetime.