[PATCH] crypto/perlasm/x86nasm.pl fix cast asm

2007-12-21 Thread Guenter Knauf
Hi,
due to recent changes to x86nasm.pl the cast nasm output is now broken;
when external labes are defined only the first appears in the asm code - but 
the cast asm contains 4 external labes at the top:
extern  CAST_S_table0
extern  CAST_S_table1
extern  CAST_S_table2
extern  CAST_S_table3

here's the patch which seems to fix that:

--- x86nasm.pl.orig Fri Dec 21 12:09:02 2007
+++ x86nasm.pl  Fri Dec 21 12:30:36 2007
@@ -125,7 +125,7 @@
 sub ::comment {   foreach (@_) { push(@out,\t; $_\n); }   }
 
 sub ::external_label
-{   push(@out,${drdecor}extern\t.::LABEL($_[0],$nmdecor.$_[0]).\n);   }
+{   foreach (@_) { 
push(@out,${drdecor}extern\t.::LABEL($_,$nmdecor.$_).\n); }   }
 
 sub ::public_label
 {   push(@out,${drdecor}global\t.::LABEL($_[0],$nmdecor.$_[0]).\n);  }

the patch might have fuzz because I need to apply another patch for coff output 
(as posted already earlier).

thanks, Guenter.


__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]


Re: Administrivia and seasons greetings

2007-12-21 Thread Guenter Knauf
Hi Lutz,
 Replies to active tickets are handled automatically.
I've a ticket open where I posted a couple of times updates:
http://rt.openssl.org/index.html?q=1611
but nothing of these appear here on the list - although they are properly 
listed with #1611...
can you tell me what I'm probably doing wrong?

thanks, Guenter.


__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]


[openssl.org #1626] const'ness discrepancy in d2i_RSAPublicKey POD page

2007-12-21 Thread Pietro Cerutti via RT
This is a BUG REPORT for the POD documentation page for the
d2i_RSAPublicKey set of functions.

The second parameter should be ``const unsigned char **'' instead of
``unsigned char **''.

Please find the FreeBSD GNATS entry with the link to the patch at [1].

[1] http://www.freebsd.org/cgi/query-pr.cgi?pr=docs/118902

Best Regards,

-- 
Ing. Pietro Cerutti

Bachelor of Science in Computer Science
Specialisation in Software Engineering

Bern University of Applied Sciences
Engineering and Information Technology
[ www.ti.bfh.ch ]

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]