diff options
author | Michi Henning <michi@zeroc.com> | 2007-02-12 08:25:52 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-02-12 08:25:52 +0000 |
commit | d8f6f6e54dd1e7d8ffbe6f12638eb251a9889997 (patch) | |
tree | 41da4bb1065a6b24e03fc130421331f2e2b07d21 /cpp/src | |
parent | Bug 1268. (diff) | |
download | ice-d8f6f6e54dd1e7d8ffbe6f12638eb251a9889997.tar.bz2 ice-d8f6f6e54dd1e7d8ffbe6f12638eb251a9889997.tar.xz ice-d8f6f6e54dd1e7d8ffbe6f12638eb251a9889997.zip |
Bug 1715.
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Glacier2/Glacier2Router.cpp | 2 | ||||
-rw-r--r-- | cpp/src/IceBox/Service.cpp | 2 | ||||
-rw-r--r-- | cpp/src/IceGrid/IceGridNode.cpp | 2 | ||||
-rw-r--r-- | cpp/src/IceGrid/IceGridRegistry.cpp | 2 | ||||
-rw-r--r-- | cpp/src/IcePatch2/Server.cpp | 1 |
5 files changed, 5 insertions, 4 deletions
diff --git a/cpp/src/Glacier2/Glacier2Router.cpp b/cpp/src/Glacier2/Glacier2Router.cpp index 27fe0be4a3e..c949bef73fe 100644 --- a/cpp/src/Glacier2/Glacier2Router.cpp +++ b/cpp/src/Glacier2/Glacier2Router.cpp @@ -501,9 +501,9 @@ Glacier2::RouterService::usage(const string& appName) "\n" "\n" "--daemon Run as a daemon.\n" + "--pidfile FILE Write process ID into FILE.\n" "--noclose Do not close open file descriptors.\n" "--nochdir Do not change the current working directory.\n" - "--pidfile <file> Write process ID to <file>." ); #endif print("Usage: " + appName + " [options]\n" + options); diff --git a/cpp/src/IceBox/Service.cpp b/cpp/src/IceBox/Service.cpp index 295d0c45817..cba81bf3d0e 100644 --- a/cpp/src/IceBox/Service.cpp +++ b/cpp/src/IceBox/Service.cpp @@ -128,9 +128,9 @@ IceBox::IceBoxService::usage(const string& appName) "\n" "\n" "--daemon Run as a daemon.\n" + "--pidfile FILE Write process ID into FILE." "--noclose Do not close open file descriptors.\n" "--nochdir Do not change the current working directory.\n" - "--pidfile <file> Write process ID to <file>." ); #endif print("Usage: " + appName + " [options]\n" + options); diff --git a/cpp/src/IceGrid/IceGridNode.cpp b/cpp/src/IceGrid/IceGridNode.cpp index adc97262422..3536d91e85c 100644 --- a/cpp/src/IceGrid/IceGridNode.cpp +++ b/cpp/src/IceGrid/IceGridNode.cpp @@ -788,9 +788,9 @@ NodeService::usage(const string& appName) "\n" "\n" "--daemon Run as a daemon.\n" + "--pidfile FILE Write process ID into FILE." "--noclose Do not close open file descriptors.\n" "--nochdir Do not change the current working directory.\n" - "--pidfile <file> Write process ID to <file>." ); #endif print("Usage: " + appName + " [options]\n" + options); diff --git a/cpp/src/IceGrid/IceGridRegistry.cpp b/cpp/src/IceGrid/IceGridRegistry.cpp index 413a0264fd7..622f42b44d7 100644 --- a/cpp/src/IceGrid/IceGridRegistry.cpp +++ b/cpp/src/IceGrid/IceGridRegistry.cpp @@ -198,9 +198,9 @@ RegistryService::usage(const string& appName) "\n" "\n" "--daemon Run as a daemon.\n" + "--pidfile FILE Write process ID into FILE." "--noclose Do not close open file descriptors.\n" "--nochdir Do not change the current working directory.\n" - "--pidfile <file> Write process ID to <file>." ); #endif print("Usage: " + appName + " [options]\n" + options); diff --git a/cpp/src/IcePatch2/Server.cpp b/cpp/src/IcePatch2/Server.cpp index 98ac031b21a..101820871d5 100644 --- a/cpp/src/IcePatch2/Server.cpp +++ b/cpp/src/IcePatch2/Server.cpp @@ -230,6 +230,7 @@ IcePatch2::PatcherService::usage(const string& appName) "\n" "\n" "--daemon Run as a daemon.\n" + "--pidfile FILE Write process ID into FILE.\n" "--noclose Do not close open file descriptors." // --nochdir is intentionally not shown here. (See the comment in main().) |