]> git.sur5r.net Git - openldap/commitdiff
Fix typo in last commit (fixing multiple byte tags)
authorKurt Zeilenga <kurt@openldap.org>
Sat, 13 May 2000 00:02:36 +0000 (00:02 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 13 May 2000 00:02:36 +0000 (00:02 +0000)
libraries/liblber/decode.c

index d51f41ec5338234b14d0af2d42106de54dfe5cef..79b083dbc18ee5f301e5cc2d4c240b5cd6c1bf51 100644 (file)
@@ -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) )