summaryrefslogtreecommitdiff
path: root/crypto/objects
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2014-06-27 03:17:15 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-06-27 03:17:15 +0100
commit38a503fb8adaad331b8a67aaa9eb2fa915113ed0 (patch)
tree3b9dad1e8b913b98d5aeed7c9d1f878529210727 /crypto/objects
parentfef58ce79eebd86c50cdb6725b948c86655ff168 (diff)
downloadopenssl-new-38a503fb8adaad331b8a67aaa9eb2fa915113ed0.tar.gz
Fix OID encoding for one component.
OIDs with one component don't have an encoding. PR#2556 (Bug#1)
Diffstat (limited to 'crypto/objects')
-rw-r--r--crypto/objects/obj_dat.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/objects/obj_dat.pl b/crypto/objects/obj_dat.pl
index c67f71c327..86bcefb97a 100644
--- a/crypto/objects/obj_dat.pl
+++ b/crypto/objects/obj_dat.pl
@@ -115,7 +115,7 @@ for ($i=0; $i<$n; $i++)
$out.="\"$sn\"";
$out.=","."\"$ln\"";
$out.=",NID_$nid{$i},";
- if (defined($obj{$nid{$i}}))
+ if (defined($obj{$nid{$i}}) && $objd{$obj{$nid{$i}}} =~ /,/)
{
$v=$objd{$obj{$nid{$i}}};
$v =~ s/L//g;