Skip Menu |

This queue is for tickets about the Crypt-OpenSSL-DSA CPAN distribution.

Report information
The Basics
Id: 48446
Status: resolved
Priority: 0/
Queue: Crypt-OpenSSL-DSA

People
Owner: Nobody in particular
Requestors: jquelin [...] cpan.org
Cc: CARNIL [...] cpan.org
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.13
Fixed in: (no value)



Subject: compiling with -Werror=format-security fails
attached patch fixes the problem.
Subject: Crypt-OpenSSL-DSA-0.13-fix-error-format.patch
--- DSA.xs.orig 2009-08-05 12:18:29.000000000 +0200 +++ DSA.xs 2009-08-05 12:19:04.000000000 +0200 @@ -54,7 +54,7 @@ } dsa = DSA_generate_parameters(bits, seedpv, seed_len, NULL, NULL, NULL, NULL); if (!dsa) - croak(ERR_reason_error_string(ERR_get_error())); + croak("%s", ERR_reason_error_string(ERR_get_error())); RETVAL = dsa; OUTPUT: RETVAL
Thank you, patch applied, should be in version 0.14 which should be on CPAN in next few hours.