Index: trunk/BNC/src/PPP/pppClient.cpp
===================================================================
--- trunk/BNC/src/PPP/pppClient.cpp	(revision 10332)
+++ trunk/BNC/src/PPP/pppClient.cpp	(revision 10333)
@@ -265,14 +265,14 @@
   }
 
-  if      ((numBancroft = _usedSystems.value('G')) > _opt->_minObs) {
+  if      ((numBancroft = _usedSystems.value('G')) >= _opt->_minObs) {
     sysBancroft = 'G';
   }
-  else if ((numBancroft = _usedSystems.value('E')) > _opt->_minObs) {
+  else if ((numBancroft = _usedSystems.value('E')) >= _opt->_minObs) {
     sysBancroft = 'E';
   }
-  else if ((numBancroft = _usedSystems.value('C')) > _opt->_minObs) {
+  else if ((numBancroft = _usedSystems.value('C')) >= _opt->_minObs) {
     sysBancroft = 'C';
   }
-  else if ((numBancroft = _usedSystems.value('R')) > _opt->_minObs) {
+  else if ((numBancroft = _usedSystems.value('R')) >= _opt->_minObs) {
     sysBancroft = 'R';
   }
