~ubuntu-branches/ubuntu/saucy/quassel/saucy-proposed

« back to all changes in this revision

Viewing changes to src/core/coresessioneventprocessor.cpp

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2013-10-11 00:06:18 UTC
  • mfrom: (1.1.52)
  • Revision ID: package-import@ubuntu.com-20131011000618-46ncwnh3demhlw10
Tags: 0.9.1-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
444
444
void CoreSessionEventProcessor::processKeyEvent(KeyEvent *e)
445
445
{
446
446
    if (!Cipher::neededFeaturesAvailable()) {
447
 
        emit newEvent(new MessageEvent(Message::Error, e->network(), tr("Unable to perform key exchange."), e->prefix(), e->target(), Message::None, e->timestamp()));
 
447
        emit newEvent(new MessageEvent(Message::Error, e->network(), tr("Unable to perform key exchange, missing qca-ossl plugin."), e->prefix(), e->target(), Message::None, e->timestamp()));
448
448
        return;
449
449
    }
450
450
    CoreNetwork *net = qobject_cast<CoreNetwork*>(e->network());
1016
1016
 
1017
1017
void CoreSessionEventProcessor::handleCtcpPing(CtcpEvent *e)
1018
1018
{
1019
 
    e->setReply(e->param());
 
1019
    e->setReply(e->param().isNull() ? "" : e->param());
1020
1020
}
1021
1021
 
1022
1022