Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

C-Kermit 9.0 Released

19 views
Skip to first unread message

Frank da Cruz

unread,
Jun 28, 2011, 1:30:59 PM6/28/11
to
C-Kermit 9.0 is released, open source, ready to go:

http://kermit.columbia.edu/ckermit.html

- Frank

Steven Schweda

unread,
Jun 30, 2011, 4:38:49 PM6/30/11
to Steven M. Schweda
On Jun 28, 12:30 pm, Frank da Cruz <f...@panix.com> wrote:

> http://kermit.columbia.edu/ckermit.html

To avoid the %CC-W-PTRMISMATCH1 complaints from ck_ssl.c, add
two (harmless) type casts:

gdiff ck_ssl.c_orig ck_ssl.c
2460c2460
< if (strlen(gen->d.ia5->data) != gen->d.ia5->length)
{
---
> if (strlen((char *)gen->d.ia5->data) != gen->d.ia5->length) {
2773c2773
< if (strlen(gen->d.ia5->data) != gen->d.ia5->length)
{
---
> if (strlen((char *)gen->d.ia5->data) != gen->d.ia5->length) {


My build command:
@ CKVKER.COM S D "CK_SSL"

Frank da Cruz

unread,
Jul 3, 2011, 12:37:21 PM7/3/11
to
On 2011-06-30, Steven Schweda <sms.an...@gmail.com> wrote:
:
Thanks, I'll put this in my working code. I'm not sure if there will have
to be a 9.0.301 yet, let's see what else comes in.

- Frank

0 new messages