Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls
In directory sc8-pr-cvs1:/tmp/cvs-serv4325
Modified Files:
TlsSession.cs
Log Message:
Minor change
Index: TlsSession.cs
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/TlsSession.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TlsSession.cs 20 Oct 2003 18:21:43 -0000 1.4
--- TlsSession.cs 20 Oct 2003 21:38:01 -0000 1.5
***************
*** 114,118 ****
internal short MaxFragmentSize
{
! get { return (short)Math.Pow(2, 14); }
}
--- 114,118 ----
internal short MaxFragmentSize
{
! get { return (short)System.Math.Pow(2, 14); }
}
|