diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-06-14 23:55:35 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-06-16 11:10:51 +0000 |
commit | ca9de688c2c263c51dca1cbbf2892e3b419f921e (patch) | |
tree | 8700f70efdc3275cf71277347e1268b8cc4954a4 /xmlsecurity | |
parent | edb1582c4aec8948872aeca46e4a2703768f3c55 (diff) |
Fix typos
Change-Id: I549635318f46718042e50c8f89ce3c620cade990
Reviewed-on: https://gerrit.libreoffice.org/16281
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx | 2 | ||||
-rw-r--r-- | xmlsecurity/source/xmlsec/nss/nssinitializer.cxx | 4 | ||||
-rw-r--r-- | xmlsecurity/source/xmlsec/nss/secerror.cxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx index b610a0f32078..b0338f0dceef 100644 --- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx +++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx @@ -63,7 +63,7 @@ class SecurityEnvironment_MSCryptImpl : public ::cppu::WeakImplHelper3< //Key store HCERTSTORE m_hKeyStore ; - //Certiticate store + //Certificate store HCERTSTORE m_hCertStore ; // i120675, save the store handles diff --git a/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx b/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx index 2a2ad98368ba..8e7498a47cab 100644 --- a/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx +++ b/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx @@ -122,7 +122,7 @@ void deleteRootsModule() { if (PK11_HasRootCerts(slot)) { - SAL_INFO("xmlsecurity.xmlsec", "The root certifificates module \"" << module->commonName << "\" is already loaded: " << module->dllName); + SAL_INFO("xmlsecurity.xmlsec", "The root certificates module \"" << module->commonName << "\" is already loaded: " << module->dllName); RootsModule = SECMOD_ReferenceModule(module); break; @@ -334,7 +334,7 @@ bool nsscrypto_initialize( const css::uno::Reference< css::uno::XComponentContex } else { - SAL_INFO("xmlsecurity.xmlsec", "FAILED to add new root certifice module " ROOT_CERTS " contained in " << ospath); + SAL_INFO("xmlsecurity.xmlsec", "FAILED to add new root certificate module " ROOT_CERTS " contained in " << ospath); return_value = false; } diff --git a/xmlsecurity/source/xmlsec/nss/secerror.cxx b/xmlsecurity/source/xmlsec/nss/secerror.cxx index 88275ce33827..ea82265bd8d4 100644 --- a/xmlsecurity/source/xmlsec/nss/secerror.cxx +++ b/xmlsecurity/source/xmlsec/nss/secerror.cxx @@ -68,7 +68,7 @@ printChainFailure(CERTVerifyLog *log) if (log->count > 0) { - SAL_INFO("xmlsecurity.xmlsec", "Bad certifcation path:"); + SAL_INFO("xmlsecurity.xmlsec", "Bad certification path:"); unsigned long errorFlags = 0; for (node = log->head; node; node = node->next) { |