From: Kurt Zeilenga Date: Sat, 13 May 2000 00:02:36 +0000 (+0000) Subject: Fix typo in last commit (fixing multiple byte tags) X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~2988 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fadaf7f7065a02aac5605842b0dc4a89fc1eaa8b;p=openldap Fix typo in last commit (fixing multiple byte tags) --- diff --git a/libraries/liblber/decode.c b/libraries/liblber/decode.c index d51f41ec53..79b083dbc1 100644 --- a/libraries/liblber/decode.c +++ b/libraries/liblber/decode.c @@ -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) )