mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 16:19:35 -05:00
Fix typo in last commit (fixing multiple byte tags)
This commit is contained in:
parent
237b00049a
commit
fadaf7f706
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ ber_get_tag( BerElement *ber )
|
|||
if ( ber_read( ber, (char *) &xbyte, 1 ) != 1 )
|
||||
return( LBER_DEFAULT );
|
||||
|
||||
tag << 8;
|
||||
tag <<= 8;
|
||||
tag |= 0x00ffUL & (ber_tag_t) xbyte;
|
||||
|
||||
if ( ! (xbyte & LBER_MORE_TAG_MASK) )
|
||||
|
|
|
|||
Loading…
Reference in a new issue