* Minor fix for previous checkin
authorArt Cancro <ajc@citadel.org>
Fri, 16 Apr 2004 03:14:06 +0000 (03:14 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 16 Apr 2004 03:14:06 +0000 (03:14 +0000)
webcit/ChangeLog
webcit/crypto.c

index b73e91ee90ecfe2e4778e496ca76b183fb8f3692..78ed651385bfd6b2b0b82d90487c9ebf9c323a2b 100644 (file)
@@ -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 <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 6c270ad5b75bad57bd667163778014946933b27b..e4196717f992b115b2bd475883deca548fad5315 100644 (file)
@@ -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;
        }