diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-02-27 14:27:09 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-02-27 14:27:09 -0330 |
commit | 2073b67cb2f4a2735a7e8565c9b04ea65efec4d4 (patch) | |
tree | b1cf4dbc25a49e1a548f027265f5baa7a8653841 /cpp/src/Ice | |
parent | Remove debug statement (diff) | |
download | ice-2073b67cb2f4a2735a7e8565c9b04ea65efec4d4.tar.bz2 ice-2073b67cb2f4a2735a7e8565c9b04ea65efec4d4.tar.xz ice-2073b67cb2f4a2735a7e8565c9b04ea65efec4d4.zip |
Typo
Diffstat (limited to 'cpp/src/Ice')
-rw-r--r-- | cpp/src/Ice/TcpAcceptor.cpp | 2 |
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 |