Changeset 8024 in ntrip for trunk/BNC/src/PPP/pppClient.cpp


Ignore:
Timestamp:
Aug 24, 2016, 6:24:40 PM (8 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppClient.cpp

    r7996 r8024  
    216216      if (satObs->prn().system() == 'G') {
    217217        if (tLC == t_lc::dummy) {
    218           tLC = satObs->isValid(t_lc::cIF) ? t_lc::cIF : t_lc::c1;
     218          if (satObs->isValid(t_lc::cIF)) {
     219            tLC = t_lc::cIF;
     220          }
     221          else if (satObs->isValid(t_lc::c1)) {
     222            tLC = t_lc::c1;
     223          }
     224          else {
     225            tLC = t_lc::c2;
     226          }
    219227        }
    220228        if ( satObs->isValid(tLC) && (!satObs->modelSet() || satObs->eleSat() >= OPT->_minEle) ) {
Note: See TracChangeset for help on using the changeset viewer.