summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2008-02-27 14:27:09 -0330
committerDwayne Boone <dwayne@zeroc.com>2008-02-27 14:27:09 -0330
commit2073b67cb2f4a2735a7e8565c9b04ea65efec4d4 (patch)
treeb1cf4dbc25a49e1a548f027265f5baa7a8653841 /cpp/src
parentRemove debug statement (diff)
downloadice-2073b67cb2f4a2735a7e8565c9b04ea65efec4d4.tar.bz2
ice-2073b67cb2f4a2735a7e8565c9b04ea65efec4d4.tar.xz
ice-2073b67cb2f4a2735a7e8565c9b04ea65efec4d4.zip
Typo
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/TcpAcceptor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/TcpAcceptor.cpp b/cpp/src/Ice/TcpAcceptor.cpp
index ea8513a4f66..2163f7fb47c 100644
--- a/cpp/src/Ice/TcpAcceptor.cpp
+++ b/cpp/src/Ice/TcpAcceptor.cpp
@@ -105,7 +105,7 @@ IceInternal::TcpAcceptor::TcpAcceptor(const InstancePtr& instance, const string&
#ifdef SOMAXCONN
_backlog = instance->initializationData().properties->getPropertyAsIntWithDefault("Ice.TCP.Backlog", SOMAXCONN);
#else
- _backlog = instance->initializationData()->properties.getPropertyAsIntWithDefault("Ice.TCP.Backlog", 511);
+ _backlog = instance->initializationData().properties->getPropertyAsIntWithDefault("Ice.TCP.Backlog", 511);
#endif
try