Fixed improper message length for the connection termination message 'X' when
authorBarry Lind
Fri, 15 Aug 2003 18:36:58 +0000 (18:36 +0000)
committerBarry Lind
Fri, 15 Aug 2003 18:36:58 +0000 (18:36 +0000)
using the V3 protocol.

 Modified Files:
  jdbc1/AbstractJdbc1Connection.java

src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java

index 1264c9f063ef288f0e187409b4135d59717671e6..c3d644bdbf9239de3bbe2516f879d4b974a775ab 100644 (file)
@@ -9,7 +9,7 @@
  * Copyright (c) 2003, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Connection.java,v 1.22 2003/08/11 20:54:55 barry Exp $
+ *   $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Connection.java,v 1.23 2003/08/15 18:36:58 barry Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -1121,7 +1121,7 @@ public abstract class AbstractJdbc1Connection implements BaseConnection
            try
            {
                pgStream.SendChar('X');
-               pgStream.SendInteger(0,4);
+               pgStream.SendInteger(4,4);
                pgStream.flush();
                pgStream.close();
            }