Typo made all missed all aliasedobjectname values.

This commit is contained in:
Kurt Zeilenga 1999-07-22 19:17:16 +00:00
parent c9778dd116
commit 766b78765f
2 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ static char* get_alias_dn(
/*
* aliasedObjectName should be SINGLE-VALUED with a single value.
*/
if ( a->a_vals[0] == NULL || a->a_vals[0]->bv_val != NULL ) {
if ( a->a_vals[0] == NULL || a->a_vals[0]->bv_val == NULL ) {
/*
* there was an aliasedobjectname defined but no data.
*/

View File

@ -227,7 +227,7 @@ static char* get_alias_dn(
/*
* aliasedObjectName should be SINGLE-VALUED with a single value.
*/
if ( a->a_vals[0] == NULL || a->a_vals[0]->bv_val != NULL ) {
if ( a->a_vals[0] == NULL || a->a_vals[0]->bv_val == NULL ) {
/*
* there was an aliasedobjectname defined but no data.
*/