Build without HAVE_TLS

This commit is contained in:
Luke Howard 2003-05-20 02:59:19 +00:00
parent 4f58efc4d1
commit 9184d038ea

View File

@ -2229,7 +2229,13 @@ static int initConnectionPB( Slapi_PBlock *pb, Connection *conn )
return rc; return rc;
/* Returns pointer to static string */ /* Returns pointer to static string */
connAuthType = Authorization2AuthType( &conn->c_authz, conn->c_is_tls, 1 ); connAuthType = Authorization2AuthType( &conn->c_authz,
#ifdef HAVE_TLS
conn->c_is_tls,
#else
0,
#endif
1 );
if ( connAuthType != NULL ) { if ( connAuthType != NULL ) {
rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHTYPE, (void *)connAuthType); rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHTYPE, (void *)connAuthType);
if ( rc != LDAP_SUCCESS ) if ( rc != LDAP_SUCCESS )
@ -2237,7 +2243,13 @@ static int initConnectionPB( Slapi_PBlock *pb, Connection *conn )
} }
/* Returns pointer to allocated string */ /* Returns pointer to allocated string */
connAuthType = Authorization2AuthType( &conn->c_authz, conn->c_is_tls, 0 ); connAuthType = Authorization2AuthType( &conn->c_authz,
#ifdef HAVE_TLS
conn->c_is_tls,
#else
0,
#endif
0 );
if ( connAuthType != NULL ) { if ( connAuthType != NULL ) {
rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHMETHOD, (void *)connAuthType); rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHMETHOD, (void *)connAuthType);
if ( rc != LDAP_SUCCESS ) if ( rc != LDAP_SUCCESS )
@ -2331,7 +2343,11 @@ int slapi_is_connection_ssl( Slapi_PBlock *pb, int *isSSL )
Connection *conn; Connection *conn;
slapi_pblock_get( pb, SLAPI_CONNECTION, &conn ); slapi_pblock_get( pb, SLAPI_CONNECTION, &conn );
#ifdef HAVE_TLS
*isSSL = conn->c_is_tls; *isSSL = conn->c_is_tls;
#else
*isSSL = 0;
#endif
return LDAP_SUCCESS; return LDAP_SUCCESS;
#else #else