diff options
Diffstat (limited to 'cpp/src/IcePatch2/Server.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch2/Server.cpp b/cpp/src/IcePatch2/Server.cpp index 76030e75f64..7201cec74c2 100644 --- a/cpp/src/IcePatch2/Server.cpp +++ b/cpp/src/IcePatch2/Server.cpp @@ -83,12 +83,12 @@ IcePatch2::PatcherService::start(int argc, char* argv[]) return false; } - if(opts.isSet("h") || opts.isSet("help")) + if(opts.isSet("help")) { usage(argv[0]); return false; } - if(opts.isSet("v") || opts.isSet("version")) + if(opts.isSet("version")) { print(ICE_STRING_VERSION); return false; |