Index: trunk/BNC/src/PPP/pppRun.cpp
===================================================================
--- trunk/BNC/src/PPP/pppRun.cpp	(revision 5998)
+++ trunk/BNC/src/PPP/pppRun.cpp	(revision 5999)
@@ -258,6 +258,5 @@
   // Process the oldest epochs
   // ------------------------
-  while (_epoData.size() &&
-         (!_opt->_realTime ||  _epoData.front()->_time < _lastClkCorrTime + 10.0)) {
+  while (_epoData.size() && !waitForCorr(_epoData.front()->_time)) {
 
     const vector<t_satObs*>& satObs = _epoData.front()->_satObs;
@@ -582,2 +581,12 @@
 }
 
+//  
+////////////////////////////////////////////////////////////////////////////
+bool t_pppRun::waitForCorr(const bncTime& epoTime) const {
+
+  if (!_opt->_realTime) {
+    return false;
+  }
+
+  return false;
+}
Index: trunk/BNC/src/PPP/pppRun.h
===================================================================
--- trunk/BNC/src/PPP/pppRun.h	(revision 5998)
+++ trunk/BNC/src/PPP/pppRun.h	(revision 5999)
@@ -56,4 +56,6 @@
   };
 
+  bool waitForCorr(const bncTime& epoTime) const;
+
   QMutex                 _mutex;
   const t_pppOptions*    _opt;
