diff options
author | Michi Henning <michi@zeroc.com> | 2005-01-14 06:57:52 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-01-14 06:57:52 +0000 |
commit | fa0012a4f9734b4bdd0c1500f821b6f2ee873c14 (patch) | |
tree | f2dfa25136a634607861ab272d788e8f595e8651 /cpp/src/IcePatch2/Server.cpp | |
parent | Changed test to leave _noDelete as true. (diff) | |
download | ice-fa0012a4f9734b4bdd0c1500f821b6f2ee873c14.tar.bz2 ice-fa0012a4f9734b4bdd0c1500f821b6f2ee873c14.tar.xz ice-fa0012a4f9734b4bdd0c1500f821b6f2ee873c14.zip |
Did some tidying up, got rid of magic numbers, added a config property for
the max read size, and added documentation.
Diffstat (limited to 'cpp/src/IcePatch2/Server.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2/Server.cpp b/cpp/src/IcePatch2/Server.cpp index 0b02416a7a0..1085cd734a8 100644 --- a/cpp/src/IcePatch2/Server.cpp +++ b/cpp/src/IcePatch2/Server.cpp @@ -173,7 +173,7 @@ IcePatch2::PatcherService::start(int argc, char* argv[]) const char* idProperty = "IcePatch2.Identity"; Identity id = stringToIdentity(properties->getPropertyWithDefault(idProperty, "IcePatch2/server")); - adapter->add(new FileServerI(dataDir, infoSeq), id); + adapter->add(new FileServerI(communicator(), dataDir, infoSeq), id); if(adminAdapter) { |