From fadaf7f7065a02aac5605842b0dc4a89fc1eaa8b Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Sat, 13 May 2000 00:02:36 +0000 Subject: [PATCH] Fix typo in last commit (fixing multiple byte tags) --- libraries/liblber/decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ) -- 2.39.5