Skip to content
Snippets Groups Projects
Commit d37c2fce authored by David Hedbor's avatar David Hedbor
Browse files

Niels fix for the infamous SSL CGI POST problem.

Rev: lib/modules/SSL.pmod/sslfile.pike:1.14
parent 4d06767f
No related branches found
No related tags found
No related merge requests found
/* $Id: sslfile.pike,v 1.13 1998/08/26 11:43:40 grubba Exp $
/* $Id: sslfile.pike,v 1.14 1999/01/16 12:37:15 neotron Exp $
*
*/
......@@ -139,8 +139,9 @@ private void ssl_read_callback(mixed id, string s)
read_buffer += data;
if (!blocking && read_callback && strlen(read_buffer))
{
read_callback(id, read_buffer);
string received = read_buffer;
read_buffer = "";
read_callback(id, received);
}
} else {
if (data > 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment