fix bad merge

This commit is contained in:
terrafrost 2021-04-03 13:48:40 -05:00
parent 104a57badd
commit 0fc7c81c66

View File

@ -452,14 +452,10 @@ abstract class ASN1
}
break;
case self::TYPE_OBJECT_IDENTIFIER:
<<<<<<< HEAD
$current['content'] = self::decodeOID(substr($content, $content_pos));
=======
if ($constructed) {
return false;
}
$current['content'] = $this->_decodeOID(substr($content, $content_pos));
>>>>>>> moosa-2.0
$current['content'] = self::decodeOID(substr($content, $content_pos));
if ($current['content'] === false) {
return false;
}