diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Glacier/GlacierI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Glacier/GlacierI.cpp b/cpp/src/Glacier/GlacierI.cpp index 29fe6d510a7..28ea2d91af6 100644 --- a/cpp/src/Glacier/GlacierI.cpp +++ b/cpp/src/Glacier/GlacierI.cpp @@ -35,8 +35,8 @@ Glacier::StarterI::StarterI(const CommunicatorPtr& communicator) : ostringstream defSecondsValid; defSecondsValid << dec << IceSSL::OpenSSL::RSACertificateGenContext::daysToSeconds(1); string country = _properties->getPropertyWithDefault("Glacier.Starter.Certificate.Country", "US"); - string stateProv = _properties->getPropertyWithDefault("Glacier.Starter.Certificate.StateProvince", "Washington"); - string locality = _properties->getPropertyWithDefault("Glacier.Starter.Certificate.Locality", "DC"); + string stateProv = _properties->getPropertyWithDefault("Glacier.Starter.Certificate.StateProvince", "DC"); + string locality = _properties->getPropertyWithDefault("Glacier.Starter.Certificate.Locality", "Washington"); string org = _properties->getPropertyWithDefault("Glacier.Starter.Certificate.Organization", "Some Company Inc."); string orgUnit = _properties->getPropertyWithDefault("Glacier.Starter.Certificate.OranizationalUnit", "Sales"); string commonName = _properties->getPropertyWithDefault("Glacier.Starter.Certificate.CommonName", "John Doe"); |