diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-05-17 20:36:26 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-05-17 20:36:26 +0000 |
commit | 59f2578fbb148e6fe05f261b58e476719d17dda2 (patch) | |
tree | 6a302a8c88cfdae5bdf4c62de96534c9ae9d97d6 /cpp/src | |
parent | more cleanup in Ice::Service (diff) | |
download | ice-59f2578fbb148e6fe05f261b58e476719d17dda2.tar.bz2 ice-59f2578fbb148e6fe05f261b58e476719d17dda2.tar.xz ice-59f2578fbb148e6fe05f261b58e476719d17dda2.zip |
bug fix for win9x()
Diffstat (limited to 'cpp/src')
-rwxr-xr-x | cpp/src/Ice/Service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Service.cpp b/cpp/src/Ice/Service.cpp index cd701a59327..f1c2c5fa2ad 100755 --- a/cpp/src/Ice/Service.cpp +++ b/cpp/src/Ice/Service.cpp @@ -987,7 +987,7 @@ Ice::Service::runService(int argc, char* argv[]) { assert(_service); - if(_win9x) + if(!checkSystem()) { error("Win32 service not supported on Windows 9x/ME"); return EXIT_FAILURE; |