~andersk/ubuntu/oneiric/openssl/spurious-reboot

« back to all changes in this revision

Viewing changes to crypto/objects/objects.pl

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2010-12-12 15:37:21 UTC
  • mto: (1.2.1 upstream) (11.2.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 55.
  • Revision ID: james.westby@ubuntu.com-20101212153721-mfw51stum5hwztpd
Tags: upstream-1.0.0c
ImportĀ upstreamĀ versionĀ 1.0.0c

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
        $Cname =~ s/^X//;
15
15
        if (defined($nidn{$mynum}))
16
16
                { die "$ARGV[1]:$o:There's already an object with NID ",$mynum," on line ",$order{$mynum},"\n"; }
 
17
        if (defined($nid{$Cname}))
 
18
                { die "$ARGV[1]:$o:There's already an object with name ",$Cname," on line ",$order{$nid{$Cname}},"\n"; }
17
19
        $nid{$Cname} = $mynum;
18
20
        $nidn{$mynum} = $Cname;
19
21
        $order{$mynum} = $o;
102
104
                $max_nid++;
103
105
                $nid{$Cname} = $max_nid;
104
106
                $nidn{$max_nid} = $Cname;
 
107
print STDERR "Added OID $Cname\n";
105
108
                }
106
109
        $Cname="";
107
110
        }