Changeset 9622 in ntrip


Ignore:
Timestamp:
Jan 27, 2022, 2:44:49 PM (2 years ago)
Author:
stuerze
Message:

bug fixed

File:
1 edited

Legend:

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

    r9615 r9622  
    347347    // Process the front epoch
    348348    // -----------------------
     349
    349350    if (_opt->_corrWaitTime == 0 ||
    350         _epoData.front()->_time - _lastClkCorrTime < _opt->_corrWaitTime) {
    351 
    352       if (_epoData.front()->_time - _lastClkCorrTime < 0) {
     351        (_epoData.front()->_time - _lastClkCorrTime) < _opt->_corrWaitTime) {
     352
     353      if (fabs(_epoData.front()->_time - _lastClkCorrTime) > 60.0) {
    353354        delete _epoData.front();
    354355        _epoData.pop_front();
Note: See TracChangeset for help on using the changeset viewer.