summaryrefslogtreecommitdiffstats
path: root/jrt_test
diff options
context:
space:
mode:
Diffstat (limited to 'jrt_test')
-rw-r--r--jrt_test/src/jrt-test/simpleserver/simpleserver.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp b/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
index ed7ff0e40bc..a0781ee4720 100644
--- a/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
+++ b/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
@@ -76,15 +76,10 @@ int
App::Main()
{
if (_argc < 2) {
- printf("usage: %s <listenspec> [ddw]\n", _argv[0]);
- printf(" ddw = disable direct write\n");
+ printf("usage: %s <listenspec>\n", _argv[0]);
return 1;
}
FRT_Supervisor orb;
- if (_argc >= 3 && strcmp(_argv[2], "ddw") == 0) {
- printf("(direct write disabled)\n");
- orb.GetTransport()->SetDirectWrite(false);
- }
Server server(&orb);
orb.Listen(_argv[1]);
orb.Main();