mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 13:40:37 -05:00
ber_decode_oid(): Fix typo in comment
This commit is contained in:
parent
01686daa4d
commit
4028c83c67
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue