aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/fish/libkvifish.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2015-10-08 13:31:51 +0100
committerGravatar un1versal2015-10-08 17:39:58 +0100
commit4916057361fc8ce13f63e36b993f20a1e4aa7e1c (patch)
treefde05d885169fb82b4fc4a0d43de4ef4d7f3e6ca /src/modules/fish/libkvifish.cpp
parent[ci skip] no strings - cpp files - typo corrections (diff)
downloadKVIrc-4916057361fc8ce13f63e36b993f20a1e4aa7e1c.tar.gz
KVIrc-4916057361fc8ce13f63e36b993f20a1e4aa7e1c.tar.bz2
KVIrc-4916057361fc8ce13f63e36b993f20a1e4aa7e1c.zip
[ci skip] cpp file typos and capitalization corrections
Diffstat (limited to 'src/modules/fish/libkvifish.cpp')
-rw-r--r--src/modules/fish/libkvifish.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/fish/libkvifish.cpp b/src/modules/fish/libkvifish.cpp
index 67aa026ef..e1f0f5aed 100644
--- a/src/modules/fish/libkvifish.cpp
+++ b/src/modules/fish/libkvifish.cpp
@@ -103,7 +103,7 @@
return true;
#else
- qDebug("%s",__tr2qs("FiSH has been compiled without ssl support, unable to proceed").toUtf8().data());
+ qDebug("%s",__tr2qs("FiSH has been compiled without SSL support, unable to proceed").toUtf8().data());
return false;
#endif
}
@@ -140,7 +140,7 @@
if(!fish_DH1080_gen(&szMyPubKey, pMyPubKeyLen))
{
#if !defined(COMPILE_SSL_SUPPORT)
- c->warning(__tr2qs("FiSH has been compiled without ssl support, unable to proceed"));
+ c->warning(__tr2qs("FiSH has been compiled without SSL support, unable to proceed"));
return false;
#endif
return false;
@@ -217,7 +217,7 @@
BIGNUM *bn = BN_bin2bn((unsigned char *) szHisPubKey.data(), szHisPubKey.size(),NULL);
if(-1 == (secretLen = DH_compute_key(secret, bn, g_fish_dh)))
{
- c->warning(__tr2qs("FiSH: error verificating peer public key (size=%1)").arg(szHisPubKey.size()));
+ c->warning(__tr2qs("FiSH: error verifying peer public key (size=%1)").arg(szHisPubKey.size()));
return false;
}
BN_zero(bn);
@@ -234,7 +234,7 @@
KviMemory::free(hashedSecret);
#else
- c->warning(__tr2qs("FiSH has been compiled without ssl support, unable to proceed"));
+ c->warning(__tr2qs("FiSH has been compiled without SSL support, unable to proceed"));
return false;
#endif