Changeset 9719 in ntrip for trunk/BNC/src/bncnetqueryv2.cpp


Ignore:
Timestamp:
May 17, 2022, 10:25:59 PM (2 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncnetqueryv2.cpp

    r9708 r9719  
    153153  // Connect Signals
    154154  // ---------------
     155  connect(_reply, SIGNAL(sslErrors(QList<QSslError>)),this, SLOT(slotSslErrors(QList<QSslError>)));
    155156  connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished()));
    156157  connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit()));
    157   connect(_reply, SIGNAL(sslErrors(QList<QSslError>)),
    158           this, SLOT(slotSslErrors(QList<QSslError>)));
    159158  if (!full) {
    160159    connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
     
    213212      cert.issuerInfo(QSslCertificate::OrganizationalUnitName).count() &&
    214213      cert.issuerInfo(QSslCertificate::Organization).count()) {
     214
    215215    msg += QString("Server Certificate Issued by:\n"
    216216                   "%1\n%2\nCannot be verified\n")
     
    223223#endif
    224224  }
     225
    225226  QListIterator<QSslError> it(errors);
    226227  while (it.hasNext()) {
     
    228229    msg += "\n" + err.errorString();
    229230  }
    230 
    231231  BNC_CORE->slotMessage(msg.toLatin1(), true);
    232232
Note: See TracChangeset for help on using the changeset viewer.