summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHolger Weiß <holger@zedat.fu-berlin.de>2011-05-11 15:33:14 +0200
committerHolger Weiß <holger@zedat.fu-berlin.de>2011-05-11 15:33:14 +0200
commitbdeb933b7b76f422a0df8f03cf74d2a3fe58b056 (patch)
tree48c37aa65451ebc39d25af7876d3ca8fde4d8b09 /src
parentea8cfddc7a5f494efde34092ccc2cd6880d2009a (diff)
downloadbcfg2-bdeb933b7b76f422a0df8f03cf74d2a3fe58b056.tar.gz
bcfg2-bdeb933b7b76f422a0df8f03cf74d2a3fe58b056.tar.bz2
bcfg2-bdeb933b7b76f422a0df8f03cf74d2a3fe58b056.zip
Fix a typo in an SSL error message
Diffstat (limited to 'src')
-rw-r--r--src/lib/Proxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Proxy.py b/src/lib/Proxy.py
index 8a1ad683e..ed33316af 100644
--- a/src/lib/Proxy.py
+++ b/src/lib/Proxy.py
@@ -181,7 +181,7 @@ class SSLHTTPConnection(httplib.HTTPConnection):
other_side_required = ssl.CERT_NONE
self.logger.warning("No ca is specified. Cannot authenticate the server with SSL.")
if self.cert and not self.key:
- self.logger.warning("SSL cert specfied, but key. Cannot authenticate this client with SSL.")
+ self.logger.warning("SSL cert specfied, but no key. Cannot authenticate this client with SSL.")
self.cert = None
if self.key and not self.cert:
self.logger.warning("SSL key specfied, but no cert. Cannot authenticate this client with SSL.")
@@ -226,7 +226,7 @@ class SSLHTTPConnection(httplib.HTTPConnection):
# authentication to the server
ctx.load_cert(self.cert, self.key)
elif self.cert:
- self.logger.warning("SSL cert specfied, but key. Cannot authenticate this client with SSL.")
+ self.logger.warning("SSL cert specfied, but no key. Cannot authenticate this client with SSL.")
elif self.key:
self.logger.warning("SSL key specfied, but no cert. Cannot authenticate this client with SSL.")