From: Art Cancro Date: Fri, 16 Apr 2004 03:14:06 +0000 (+0000) Subject: * Minor fix for previous checkin X-Git-Tag: v7.86~5463 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=362a89350e3264ec5709ed1a2feece2f0d80d3a8 * Minor fix for previous checkin --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index b73e91ee9..78ed65138 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 506.5 2004/04/16 03:14:06 ajc +* Minor fix for previous checkin + Revision 506.4 2004/04/16 02:59:01 ajc * Completed SSL support. Still doesn't work with all browsers... gotta figure out why @@ -1770,3 +1773,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/crypto.c b/webcit/crypto.c index 6c270ad5b..e4196717f 100644 --- a/webcit/crypto.c +++ b/webcit/crypto.c @@ -542,7 +542,7 @@ int client_read_ssl(char *buf, int bytes, int timeout) lprintf(9, "SSL_read got error %ld\n", errval); endtls(); return (client_read_to - (&buf[len], bytes - len, timeout)); + (WC->http_sock, &buf[len], bytes - len, timeout)); } len += rlen; }