diff --git a/lib/modules/SSL.pmod/handshake.pike b/lib/modules/SSL.pmod/handshake.pike index c3d381a6fbaa6b7daacaa5d3d8a164e7c2456a92..a5f798d59cde1fccdadb66a0bcc59d0cbe1381c0 100644 --- a/lib/modules/SSL.pmod/handshake.pike +++ b/lib/modules/SSL.pmod/handshake.pike @@ -1,4 +1,4 @@ -/* $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) return -1; } 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) return err; handshake_state = STATE_server_wait_for_client;