diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2004-12-31 20:09:35 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2004-12-31 20:09:35 +0000 |
commit | 012014dcfafacf8d860ad78b48358f8f1a1f400d (patch) | |
tree | 39b0aca8cb929e2315b50708f7185f41a93bd68e /TAO/tao/default_resource.cpp | |
parent | dab72c5196e7c61711d9d783f8e0538b59061617 (diff) | |
download | ATCD-012014dcfafacf8d860ad78b48358f8f1a1f400d.tar.gz |
ChangeLogTag:Thu Dec 30 13:21:37 2004 Chris Cleeland <cleeland@ociweb.com>
Diffstat (limited to 'TAO/tao/default_resource.cpp')
-rw-r--r-- | TAO/tao/default_resource.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/default_resource.cpp b/TAO/tao/default_resource.cpp index a818bf28393..6f9693afa4e 100644 --- a/TAO/tao/default_resource.cpp +++ b/TAO/tao/default_resource.cpp @@ -265,23 +265,23 @@ TAO_Default_Resource_Factory::init (int argc, ACE_TCHAR *argv[]) ACE_TCHAR* name = argv[curarg]; if (ACE_OS::strcasecmp (name, - ACE_TEXT("lru")) == 0) + ACE_TEXT ("lru")) == 0) this->connection_purging_type_ = TAO_Resource_Factory::LRU; else if (ACE_OS::strcasecmp (name, - ACE_TEXT("lfu")) == 0) + ACE_TEXT ("lfu")) == 0) this->connection_purging_type_ = TAO_Resource_Factory::LFU; else if (ACE_OS::strcasecmp (name, - ACE_TEXT("fifo")) == 0) + ACE_TEXT ("fifo")) == 0) this->connection_purging_type_ = TAO_Resource_Factory::FIFO; else if (ACE_OS::strcasecmp (name, - ACE_TEXT("null")) == 0) + ACE_TEXT ("null")) == 0) this->connection_purging_type_ = TAO_Resource_Factory::NOOP; else - this->report_option_value_error (ACE_TEXT("-ORBConnectionCachingStrategy"), name); + this->report_option_value_error (ACE_TEXT ("-ORBConnectionCachingStrategy"), name); } } else if (ACE_OS::strcasecmp (argv[curarg], |