From: Ian R. <iro...@us...> - 2009-11-01 18:14:26
|
Update of /cvsroot/perl-openssl/Crypt/OpenSSL/RSA In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7360 Modified Files: RSA.xs Log Message: PACKAGE_CROAK is only taking a single argument, not three. Index: RSA.xs =================================================================== RCS file: /cvsroot/perl-openssl/Crypt/OpenSSL/RSA/RSA.xs,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** RSA.xs 13 Nov 2006 12:26:06 -0000 1.62 --- RSA.xs 1 Nov 2009 18:14:18 -0000 1.63 *************** *** 41,45 **** #define CHECK_OPEN_SSL(p_result) if (!(p_result)) croakSsl(__FILE__, __LINE__); ! #define PACKAGE_CROAK(p_message) croak("%s:%d: %s", (p_message)) #define CHECK_NEW(p_var, p_size, p_type) \ if (New(0, p_var, p_size, p_type) == NULL) \ --- 41,45 ---- #define CHECK_OPEN_SSL(p_result) if (!(p_result)) croakSsl(__FILE__, __LINE__); ! #define PACKAGE_CROAK(p_message) croak("%s", (p_message)) #define CHECK_NEW(p_var, p_size, p_type) \ if (New(0, p_var, p_size, p_type) == NULL) \ |