diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Glacier2/ProxyVerifier.cpp | 8 | ||||
-rw-r--r-- | cpp/src/Ice/PropertyNames.cpp | 8 | ||||
-rw-r--r-- | cpp/src/Ice/PropertyNames.h | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/cpp/src/Glacier2/ProxyVerifier.cpp b/cpp/src/Glacier2/ProxyVerifier.cpp index baa9e880889..5f14e855b9c 100644 --- a/cpp/src/Glacier2/ProxyVerifier.cpp +++ b/cpp/src/Glacier2/ProxyVerifier.cpp @@ -129,25 +129,25 @@ private: Glacier2::ProxyVerifier::ProxyVerifier(const CommunicatorPtr& communicator, const char* ruleSet): _communicator(communicator), - _traceLevel(communicator->getProperties()->getPropertyAsInt("Glacier2.Client.Trace.Reject")) + _traceLevel(communicator->getProperties()->getPropertyAsInt("Glacier2.Trace.Reject")) { // // Evaluation order is dependant on how the rules are stored to the // rules vectors. // - string s = communicator->getProperties()->getProperty("Glacier2.Client.Filter.Regex.Accept"); + string s = communicator->getProperties()->getProperty("Glacier2.Filter.Regex.Accept"); if(s != "") { _acceptRules.push_back(new RegexRule(communicator, s, _traceLevel)); } - s = communicator->getProperties()->getProperty("Glacier2.Client.Filter.Regex.Reject"); + s = communicator->getProperties()->getProperty("Glacier2.Filter.Regex.Reject"); if(s != "") { _rejectRules.push_back(new RegexRule(communicator, s, _traceLevel)); } - s = communicator->getProperties()->getProperty("Glacier2.Client.Filter.MaxProxyLength"); + s = communicator->getProperties()->getProperty("Glacier2.Filter.MaxProxyLength"); if(s != "") { _rejectRules.push_back(new MaxEndpointsRule(communicator, s, _traceLevel)); diff --git a/cpp/src/Ice/PropertyNames.cpp b/cpp/src/Ice/PropertyNames.cpp index 553aacfab9a..2d83f60a053 100644 --- a/cpp/src/Ice/PropertyNames.cpp +++ b/cpp/src/Ice/PropertyNames.cpp @@ -7,7 +7,7 @@ // // ********************************************************************** -// Generated by makeprops.py from file `../config/PropertyNames.def', Mon May 1 11:37:21 2006 +// Generated by makeprops.py from file `../config/PropertyNames.def', Mon May 1 12:13:27 2006 // IMPORTANT: Do not edit this file -- any edits made here will be lost! @@ -281,9 +281,9 @@ const char* IceInternal::PropertyNames::Glacier2Props[] = "Glacier2.Client.Trace.Override", "Glacier2.Client.Trace.Reject", "Glacier2.Client.Trace.Request", - "Glacier2.Client.Filter.Regex.Reject", - "Glacier2.Client.Filter.Regex.Accept", - "Glacier2.Client.Filter.MaxProxyLength", + "Glacier2.Filter.Regex.Reject", + "Glacier2.Filter.Regex.Accept", + "Glacier2.Filter.MaxProxyLength", "Glacier2.CryptPasswords", "Glacier2.InstanceName", "Glacier2.PermissionsVerifier", diff --git a/cpp/src/Ice/PropertyNames.h b/cpp/src/Ice/PropertyNames.h index 2ea2f42f720..759eae8835f 100644 --- a/cpp/src/Ice/PropertyNames.h +++ b/cpp/src/Ice/PropertyNames.h @@ -7,7 +7,7 @@ // // ********************************************************************** -// Generated by makeprops.py from file `../config/PropertyNames.def', Mon May 1 11:37:21 2006 +// Generated by makeprops.py from file `../config/PropertyNames.def', Mon May 1 12:13:27 2006 // IMPORTANT: Do not edit this file -- any edits made here will be lost! |