my previous messaqge about mkdef.pl is wrong. Although the indicated code
can still loop, the read error seems to be this one

        while(<IN>) {
            if (/\/\* Error codes for the \w+ functions\. \*\//)
                {
                undef @tag;
                last;
                }
            if ($line ne '') {
                $_ = $line . $_;
                $line = '';
            }

            if (/\\\$/) {
                chomp; # remove eol
                chop; # remove ending backslash
                $line = $_;
                next;
            }

where either the chomp should be called immediatley after reading,
or one could tolerate trailing white spaces.

        while(<IN>) {
            chomp;
            ...

or
            if (/\\\s*$/) {
                chomp; # remove eol
                chop; # remove ending backslash
                $line = $_;
                next;
            }


-- 
To verify the signature, see http://edelpki.edelweb.fr/ 
Cela vous permet de charger le certificat de l'autorité; 
die Liste mit zurückgerufenen Zertifikaten finden Sie da auch. 

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [email protected]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to