diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-05-17 20:38:05 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-05-17 20:38:05 +0000 |
commit | f2b44e96ce6374449ae685f9298b72083af79519 (patch) | |
tree | affd4ad37b6f0304f0892265a84dc456d63e33e2 | |
parent | bug fix for win9x() (diff) | |
download | ice-f2b44e96ce6374449ae685f9298b72083af79519.tar.bz2 ice-f2b44e96ce6374449ae685f9298b72083af79519.tar.xz ice-f2b44e96ce6374449ae685f9298b72083af79519.zip |
rename win9x to checkSystem
-rw-r--r-- | cpp/src/Glacier/GlacierStarter.cpp | 2 | ||||
-rw-r--r-- | cpp/src/IcePack/IcePackNode.cpp | 2 | ||||
-rw-r--r-- | cpp/src/IcePack/IcePackRegistry.cpp | 2 | ||||
-rw-r--r-- | cpp/src/IcePatch/Server.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Glacier/GlacierStarter.cpp b/cpp/src/Glacier/GlacierStarter.cpp index c24856c3068..beb88418666 100644 --- a/cpp/src/Glacier/GlacierStarter.cpp +++ b/cpp/src/Glacier/GlacierStarter.cpp @@ -218,7 +218,7 @@ Glacier::StarterService::usage(const string& appName) "-h, --help Show this message.\n" "-v, --version Display the Ice version."; #ifdef _WIN32 - if(!win9x()) + if(checkSystem()) { options.append( "\n" diff --git a/cpp/src/IcePack/IcePackNode.cpp b/cpp/src/IcePack/IcePackNode.cpp index a4bb6091da7..8dfd6f73143 100644 --- a/cpp/src/IcePack/IcePackNode.cpp +++ b/cpp/src/IcePack/IcePackNode.cpp @@ -510,7 +510,7 @@ IcePack::NodeService::usage(const string& appName) " Deploy descriptor in file DESCRIPTOR, with\n" " optional targets."; #ifdef _WIN32 - if(!win9x()) + if(checkSystem()) { options.append( "\n" diff --git a/cpp/src/IcePack/IcePackRegistry.cpp b/cpp/src/IcePack/IcePackRegistry.cpp index ed4091b505d..bc6bd0e0361 100644 --- a/cpp/src/IcePack/IcePackRegistry.cpp +++ b/cpp/src/IcePack/IcePackRegistry.cpp @@ -91,7 +91,7 @@ IcePack::RegistryService::usage(const string& appName) "-v, --version Display the Ice version.\n" "--nowarn Don't print any security warnings."; #ifdef _WIN32 - if(!win9x()) + if(checkSystem()) { options.append( "\n" diff --git a/cpp/src/IcePatch/Server.cpp b/cpp/src/IcePatch/Server.cpp index 3dfc306ae05..11102c09098 100644 --- a/cpp/src/IcePatch/Server.cpp +++ b/cpp/src/IcePatch/Server.cpp @@ -83,7 +83,7 @@ IcePatch::IcePatchService::usage(const string& name) "-h, --help Show this message.\n" "-v, --version Display the Ice version."; #ifdef _WIN32 - if(!win9x()) + if(checkSystem()) { options.append( "\n" |