Skip to content
Snippets Groups Projects
Commit 3ea75bbf authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ber_decode_oid(): Fix typo in comment

parent bfe9bbe6
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment