Index: trunk/BNC/src/rinex/corrfile.cpp
===================================================================
--- trunk/BNC/src/rinex/corrfile.cpp	(revision 6500)
+++ trunk/BNC/src/rinex/corrfile.cpp	(revision 6501)
@@ -77,5 +77,7 @@
     }
 
-    t_corrSSR::e_type corrType = t_corrSSR::readEpoLine(_lastLine, _lastEpoTime);
+    int    numEntries;
+    string staID;
+    t_corrSSR::e_type corrType = t_corrSSR::readEpoLine(_lastLine, _lastEpoTime, numEntries, staID);
     if      (corrType == t_corrSSR::unknown) {
       throw "t_corrFile: unknown line " + _lastLine;
Index: trunk/BNC/src/satObs.cpp
===================================================================
--- trunk/BNC/src/satObs.cpp	(revision 6500)
+++ trunk/BNC/src/satObs.cpp	(revision 6501)
@@ -185,5 +185,6 @@
 // 
 ////////////////////////////////////////////////////////////////////////////
-t_corrSSR::e_type t_corrSSR::readEpoLine(const string& line, bncTime& epoTime) {
+t_corrSSR::e_type t_corrSSR::readEpoLine(const string& line, bncTime& epoTime, 
+                                         int& numEntries, string& staID) {
 
   istringstream inLine(line.c_str());
@@ -194,5 +195,6 @@
   double sec;
 
-  inLine >> epoChar >> typeString >> year >> month >> day >> hour >> min >> sec;
+  inLine >> epoChar >> typeString 
+         >> year >> month >> day >> hour >> min >> sec >> numEntries >> staID;
 
   if (epoChar == '>') {
Index: trunk/BNC/src/satObs.h
===================================================================
--- trunk/BNC/src/satObs.h	(revision 6500)
+++ trunk/BNC/src/satObs.h	(revision 6501)
@@ -156,5 +156,6 @@
  public:
   enum e_type {clkCorr, orbCorr, codeBias, phaseBias, vTec, unknown};
-  static e_type readEpoLine(const std::string& line, bncTime& epoTime);
+  static e_type readEpoLine(const std::string& line, bncTime& epoTime,
+                            int& numEntries, std::string& staID);
 };
 
