diff options
Diffstat (limited to 'cpp/src/IcePatch2/Server.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Server.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cpp/src/IcePatch2/Server.cpp b/cpp/src/IcePatch2/Server.cpp index a06d8b1889e..0b02416a7a0 100644 --- a/cpp/src/IcePatch2/Server.cpp +++ b/cpp/src/IcePatch2/Server.cpp @@ -238,7 +238,7 @@ IcePatch2::PatcherService::usage(const string& appName) "\n" "\n" "--daemon Run as a daemon.\n" - "--noclose Do not close open file descriptors.\n" + "--noclose Do not close open file descriptors." // --nochdir is intentionally not shown here. (See the comment in main().) ); @@ -283,8 +283,9 @@ main(int argc, char* argv[]) try { - status = svc.main(argc + 1, v); - u + int ac = argc + 1; + status = svc.main(ac, v); + } catch(...) { // Ignore exceptions -- the only thing left to do is to free memory. |