Skip to content
Snippets Groups Projects
Commit 35250d0a authored by Per Hedbor's avatar Per Hedbor
Browse files

Now works with pike 7.1 again (duplicated local variables). Also added a few more news

Rev: lib/modules/SSL.pmod/handshake.pike:1.20
parent e42b87f5
No related branches found
No related tags found
Loading
/* $Id: handshake.pike,v 1.19 2000/08/04 22:06:51 sigge Exp $ /* $Id: handshake.pike,v 1.20 2000/09/05 15:06:40 per Exp $
* *
*/ */
...@@ -594,7 +594,7 @@ int handle_handshake(int type, string data, string raw) ...@@ -594,7 +594,7 @@ int handle_handshake(int type, string data, string raw)
return -1; return -1;
} }
client_random = ("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" + challenge)[..31]; client_random = ("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" + challenge)[..31];
int err = reply_new_session(cipher_suites, ({ COMPRESSION_null }) ); err = reply_new_session(cipher_suites, ({ COMPRESSION_null }) );
if (err) if (err)
return err; return err;
handshake_state = STATE_server_wait_for_client; handshake_state = STATE_server_wait_for_client;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment