Hi,

I was being troubled by the same bug, and was able to solve it some time ago
using the following quick & dirty patch:

--- OpenSSL.pm  2005-02-20 22:03:03.000000000 +0100
+++ OpenSSL.pm~ 2005-05-17 12:28:37.000000000 +0200
@@ -827,8 +827,8 @@
    $ret = $?>>8;
 
    if(($ret != 0 && $opts->{'cmd'} ne 'crl') ||
-      ($ret != 0 && $opts->{'outform'} ne 'TEXT' && $opts->{'cmd'} eq 'crl') ||
-      ($ret != 1 && $opts->{'outform'} eq 'TEXT' && $opts->{'cmd'} eq 'crl')) 
{ 
+      ($ret != 0 && $opts->{'outform'} ne 'TEXT' && $opts->{'cmd'} eq 'crl')) {
+# ||       ($ret != 1 && $opts->{'outform'} eq 'TEXT' && $opts->{'cmd'} eq 
'crl')) { 
       unlink($file);
       return($ret, undef, $ext);
    } else {

which seemed to fix the problem. This might be a bogus patch though, otoh,
it doesn't eat data. However, handle with care etc.


Jasper
-- 
Jasper Spaans                                       http://jsp.vs19.net/
 00:23:15 up 10332 days, 15:10, 0 users, load average: 5.05 5.17 5.05
         There already is an object oriented version of COBOL.
             It's called "ADD ONE TO COBOL GIVING COBOL."


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to