diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2000-10-20 16:04:52 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2000-10-20 16:04:52 +0000 |
commit | 367e948026070983a0a714e4b06dcc3513bde2fd (patch) | |
tree | c95fbd0974e6ddce0db55f18e34eaf981038d3ca /io | |
parent | d42aed586227614160b85cbd85486b6b744fa897 (diff) |
socket.close replaced by socket.shutdown (more threadsafe)
Diffstat (limited to 'io')
-rw-r--r-- | io/source/connector/ctr_socket.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io/source/connector/ctr_socket.cxx b/io/source/connector/ctr_socket.cxx index 37da3daf9721..867ca30366bb 100644 --- a/io/source/connector/ctr_socket.cxx +++ b/io/source/connector/ctr_socket.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ctr_socket.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:24:18 $ + * last change: $Author: jbu $ $Date: 2000-10-20 17:04:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -234,7 +234,7 @@ namespace stoc_connector { // enshure that close is called only once if( ! m_bIgnoreClose && 1 == osl_incrementInterlockedCount( (&m_nStatus) ) ) { - m_socket.close(); + m_socket.shutdown(); notifyListeners(this, callClosed); } } |