summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Weiß <holger@zedat.fu-berlin.de>2011-05-11 15:33:14 +0200
committerSol Jerome <sol.jerome@gmail.com>2011-06-14 12:36:45 -0500
commit716168325c7221b33e3100b8a903bc5d075f6cf9 (patch)
tree0c9e9aa1a60e2d3bd7212b633587308b5744e88f
parentaa8c53f8cf7d2e8bcf63176c45c44b19cbba2bf3 (diff)
downloadbcfg2-716168325c7221b33e3100b8a903bc5d075f6cf9.tar.gz
bcfg2-716168325c7221b33e3100b8a903bc5d075f6cf9.tar.bz2
bcfg2-716168325c7221b33e3100b8a903bc5d075f6cf9.zip
Fix a typo in an SSL error message
-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.")