From: Richard Levitte Date: Wed, 20 Sep 2000 14:47:04 +0000 (+0000) Subject: Wrong variable used. It's funny how some bugs take a long time X-Git-Tag: OpenSSL_0_9_6-beta3~12 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=33b1a4c218c5f8bd27c3fbce8012b4b9fb591b65;ds=inline Wrong variable used. It's funny how some bugs take a long time getting triggered... --- diff --git a/util/mkdef.pl b/util/mkdef.pl index b673e05a7b..0ac793555c 100755 --- a/util/mkdef.pl +++ b/util/mkdef.pl @@ -867,7 +867,7 @@ sub update_numbers $new_syms++; printf OUT "%s%-40s%d\t%s\n","",$s, ++$start_num,$i; if (exists $r{$s}) { - ($s, $i) = split /\\/,$r{$sym}; + ($s, $i) = split /\\/,$r{$s}; printf OUT "%s%-40s%d\t%s\n","",$s, $start_num,$i; } }