Skip Menu |

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

Report information
The Basics
Id: 31926
Status: resolved
Priority: 0/
Queue: Crypt-SSLeay

People
Owner: dland [...] cpan.org
Requestors: SMPETERS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.57
Fixed in: 0.57_01



Subject: [PATCH] Quiet some warinings in Crypt-SSLeay
The patch below quiets some warnings in Perls compiled with gcc's using -Wwrite-strings. --- SSLeay.xs.old 2007-12-26 19:47:42.000000000 -0600 +++ SSLeay.xs 2007-12-26 19:47:49.000000000 -0600 @@ -42,7 +42,7 @@ static void InfoCallback(const SSL *s,int where,int ret) { - char *str; + const char *str; int w; w = where & ~SSL_ST_MASK;
On Wed Dec 26 20:49:18 2007, SMPETERS wrote: Show quoted text
> The patch below quiets some warnings in Perls compiled with gcc's > using -Wwrite-strings.
Thanks Steve, I've updated my repository with this change. When you say "quiets some warnings"... does that mean that there are other warnings you didn't tell me about? Thanks, David