[pgsqlclient-checkins] pgsqlclient_10/PgSqlClient.Security.Tls/source TlsReader.cs,1.7,1.8
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-08-30 11:11:31
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source In directory sc8-pr-cvs1:/tmp/cvs-serv23498 Modified Files: TlsReader.cs Log Message: Fix for an error in latest commit Index: TlsReader.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source/TlsReader.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TlsReader.cs 29 Aug 2003 23:54:35 -0000 1.7 --- TlsReader.cs 30 Aug 2003 11:11:28 -0000 1.8 *************** *** 72,76 **** // Decrypt message contents if needed ! if (contentType != TlsContentType.Alert && length == 2) { --- 72,76 ---- // Decrypt message contents if needed ! if (contentType == TlsContentType.Alert && length == 2) { |