From: Hallvard Furuseth Date: Wed, 6 Aug 2008 13:36:53 +0000 (+0000) Subject: ber_decode_oid(): Fix typo in comment X-Git-Tag: LOCKER_IDS~15 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4028c83c67c0dc37e75e302139700903d99c8000;p=openldap ber_decode_oid(): Fix typo in comment --- diff --git a/libraries/liblber/decode.c b/libraries/liblber/decode.c index 047f3e73a7..5238564ca8 100644 --- a/libraries/liblber/decode.c +++ b/libraries/liblber/decode.c @@ -69,7 +69,7 @@ ber_decode_oid( BerValue *in, BerValue *out ) val |= der[i] & 0x7f; if ( !( der[i] & 0x80 )) { if ( ptr == NULL ) { - /* Initial "x.y": val=x*40+y, x<=2, y<40 if x=2 */ + /* Initial "x.y": val=x*40+y, x<=2, y<40 if x<2 */ ptr = out->bv_val; val1 = (val < 80 ? val/40 : 2); val -= val1*40;