Changeset 9720 in ntrip for trunk


Ignore:
Timestamp:
May 18, 2022, 9:42:41 AM (2 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r9719 r9720  
    155155  connect(_reply, SIGNAL(sslErrors(QList<QSslError>)),this, SLOT(slotSslErrors(QList<QSslError>)));
    156156  connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished()));
    157   connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit()));
     157  connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(terminate()));
    158158  if (!full) {
    159     connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
     159    connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(terminate()));
    160160  }
    161161}
  • trunk/BNC/src/upload/bncuploadcaster.cpp

    r9718 r9720  
    129129     cert.issuerInfo(QSslCertificate::OrganizationalUnitName).count() &&
    130130     cert.issuerInfo(QSslCertificate::Organization).count()) {
     131
    131132   msg += QString("Server Certificate Issued by:\n"
    132133                  "%1\n%2\nCannot be verified\n")
    133 
    134134#if QT_VERSION >= 0x050000
    135135          .arg(cert.issuerInfo(QSslCertificate::OrganizationalUnitName).at(0))
     
    146146    msg += "\n" + err.errorString();
    147147  }
    148 
    149148  emit(newMessage(msg.toLatin1(), true));
    150149
Note: See TracChangeset for help on using the changeset viewer.