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


Ignore:
Timestamp:
Apr 4, 2019, 1:08:55 PM (5 years ago)
Author:
stuerze
Message:

minor changes reagarding skl filenames

File:
1 edited

Legend:

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

    r8662 r8663  
    175175    staID =            _mountPoint.path().mid(1,stIdLength).toUpper() + ".skl";
    176176    staIDalternative = _mountPoint.path().mid(1,stIdLength).toLower() + ".skl";
    177     url = sklDir + staID;
     177    url = sklDir + "/" + staID;
    178178    if (url.port() == -1) {
    179179      if (sklDir.contains("https", Qt::CaseInsensitive)) {
     
    194194    }
    195195    else {
    196       url = sklDir + staIDalternative;
     196      url = sklDir + "/" + staIDalternative;
    197197      query->waitForRequestResult(url, outData);
    198198      if (query->status() == bncNetQuery::finished &&
     
    202202          }
    203203    }
    204 
    205204    delete query;
    206205  }
Note: See TracChangeset for help on using the changeset viewer.