summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSol Jerome <solj+dev@soljerome.com>2011-05-13 05:44:11 -0700
committerSol Jerome <solj+dev@soljerome.com>2011-05-13 05:44:11 -0700
commit0bb336430cd2bbc926d580ed8e5d36afcd90a00b (patch)
treebac214fc6344d4cfbadd2b60bbbf95d86491d552
parent7e61aa94278b9983c2cb321524e90e38c143475c (diff)
parentbdeb933b7b76f422a0df8f03cf74d2a3fe58b056 (diff)
downloadbcfg2-0bb336430cd2bbc926d580ed8e5d36afcd90a00b.tar.gz
bcfg2-0bb336430cd2bbc926d580ed8e5d36afcd90a00b.tar.bz2
bcfg2-0bb336430cd2bbc926d580ed8e5d36afcd90a00b.zip
Merge pull request #31 from weiss/fix-typo
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.")