- From: <dunc@tiny.net>
- Date: Wed, 12 Jul 2000 21:59:40 -0400 (EDT)
- To: www-lib@w3.org
Unless I'm confused again, this if clause from HTSSL_open (in HTSSL.c)
is the opposite of what the log message reports:
if (!htssl->ssl) {
HTTRACE(PROT_TRACE, "HTSSL....... SSL object %p has non-NULL ssl\n" _ htssl);
I suspect the log message is correct and the test should really be:
if (htssl->ssl != NULL)
--dunc
Received on Wednesday, 26 July 2000 03:46:03 UTC