From: Hallvard Furuseth Date: Fri, 30 Apr 1999 08:23:32 +0000 (+0000) Subject: Fix typo LDAP_END_SEQORSET -> LBER_END_SEQORSET X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~102 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c35af39248f381735c1dd3c18fca48771013acae;p=openldap Fix typo LDAP_END_SEQORSET -> LBER_END_SEQORSET --- diff --git a/libraries/liblber/decode.c b/libraries/liblber/decode.c index b0ca907ff0..75ec399433 100644 --- a/libraries/liblber/decode.c +++ b/libraries/liblber/decode.c @@ -498,7 +498,7 @@ va_dcl j = 0; for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT && -#ifdef LDAP_END_SEQORSET +#ifdef LBER_END_SEQORSET tag != LBER_END_SEQORSET && #endif rc != LBER_DEFAULT; @@ -514,7 +514,7 @@ va_dcl rc = ber_get_stringa( ber, &((*sss)[j]) ); j++; } -#ifdef LDAP_END_SEQORSET +#ifdef LBER_END_SEQORSET if (rc != LBER_DEFAULT && tag != LBER_END_SEQORSET ) { @@ -531,7 +531,7 @@ va_dcl j = 0; for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT && -#ifdef LDAP_END_SEQORSET +#ifdef LBER_END_SEQORSET tag != LBER_END_SEQORSET && #endif rc != LBER_DEFAULT; @@ -547,7 +547,7 @@ va_dcl rc = ber_get_stringal( ber, &((*bv)[j]) ); j++; } -#ifdef LDAP_END_SEQORSET +#ifdef LBER_END_SEQORSET if (rc != LBER_DEFAULT && tag != LBER_END_SEQORSET ) {