Changeset 8641 in ntrip for branches/BNC_2.12/src/bncrinex.cpp


Ignore:
Timestamp:
Mar 25, 2019, 10:37:46 AM (5 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bncrinex.cpp

    r8620 r8641  
    170170  }
    171171  if (!sklDir.isEmpty() && sklDir != "none") {
    172     QUrl url(sklDir + "/" + _mountPoint.path().mid(1,4).toLower() + ".skl");
     172    QString mtp;
     173    if (_rnxV3) {
     174      mtp = _mountPoint.path().mid(1,9).toUpper() + ".skl";
     175    }
     176    else {
     177      mtp = _mountPoint.path().mid(1,4).toLower() + ".skl";
     178    }
     179    QUrl url(sklDir + "/" + mtp);
    173180    if (url.port() == -1) {
    174181      if (sklDir.contains("https", Qt::CaseInsensitive)) {
Note: See TracChangeset for help on using the changeset viewer.