Index: trunk/BNC/RTCM/GPSDecoder.h
===================================================================
--- trunk/BNC/RTCM/GPSDecoder.h	(revision 4263)
+++ trunk/BNC/RTCM/GPSDecoder.h	(revision 4264)
@@ -71,8 +71,10 @@
   ~t_obs() {}
 
-  double L1() const {return (L1P != 0.0 ? L1P : L1C);}
-  double L2() const {return (L2P != 0.0 ? L2P : L2C);}
-  double S1() const {return (L1P != 0.0 ? S1P : S1C);}
-  double S2() const {return (L2P != 0.0 ? S2P : S2C);}
+  double p1() const {return (P1  != 0.0 ? P1  : C1);}
+  double p2() const {return (P2  != 0.0 ? P2  : C2);}
+  double l1() const {return (L1P != 0.0 ? L1P : L1C);}
+  double l2() const {return (L2P != 0.0 ? L2P : L2C);}
+  double s1() const {return (L1P != 0.0 ? S1P : S1C);}
+  double s2() const {return (L2P != 0.0 ? S2P : S2C);}
 
   char   StatID[20+1]; // Station ID
Index: trunk/BNC/bncpppclient.cpp
===================================================================
--- trunk/BNC/bncpppclient.cpp	(revision 4263)
+++ trunk/BNC/bncpppclient.cpp	(revision 4264)
@@ -160,5 +160,5 @@
   // --------------------
   if      (obs.satSys == 'G') {
-    if ( (obs.P1 || obs.C1) && (obs.P2 || obs.C2) && obs.L1() && obs.L2() ) {
+    if ( (obs.P1 || obs.C1) && (obs.P2 || obs.C2) && obs.l1() && obs.l2() ) {
       double f1 = t_CST::freq1;
       double f2 = t_CST::freq2;
@@ -177,6 +177,6 @@
         satData->P2 = obs.C2;
       }
-      satData->L1      = obs.L1() * t_CST::c / f1;
-      satData->L2      = obs.L2() * t_CST::c / f2;
+      satData->L1      = obs.l1() * t_CST::c / f1;
+      satData->L2      = obs.l2() * t_CST::c / f2;
       satData->P3      = c1 * satData->P1 + c2 * satData->P2;
       satData->L3      = c1 * satData->L1 + c2 * satData->L2;
@@ -193,5 +193,5 @@
   // ------------------------
   else if (obs.satSys == 'R') {
-    if ( (obs.P1 || obs.C1) && (obs.P2 || obs.C2) && obs.L1() && obs.L2() ) {
+    if ( (obs.P1 || obs.C1) && (obs.P2 || obs.C2) && obs.l1() && obs.l2() ) {
       double f1 = 1602000000.0 + 562500.0 * obs.slotNum; 
       double f2 = 1246000000.0 + 437500.0 * obs.slotNum;
@@ -210,6 +210,6 @@
         satData->P2 = obs.C2;
       }
-      satData->L1      = obs.L1() * t_CST::c / f1;
-      satData->L2      = obs.L2() * t_CST::c / f2;
+      satData->L1      = obs.l1() * t_CST::c / f1;
+      satData->L2      = obs.l2() * t_CST::c / f2;
       satData->P3      = c1 * satData->P1 + c2 * satData->P2;
       satData->L3      = c1 * satData->L1 + c2 * satData->L2;
@@ -226,5 +226,5 @@
   // ------------------------
   else if (obs.satSys == 'E') {
-    if ( obs.C1 && obs.C5 && obs.L1() && obs.L5) {
+    if ( obs.C1 && obs.C5 && obs.l1() && obs.L5) {
       double f1 = t_CST::freq1;
       double f5 = t_CST::freq5;
@@ -234,5 +234,5 @@
       satData->P1      = obs.C1;
       satData->P5      = obs.C5;
-      satData->L1      = obs.L1() * t_CST::c / f1;
+      satData->L1      = obs.l1() * t_CST::c / f1;
       satData->L5      = obs.L5 * t_CST::c / f5;
       satData->P3      = c1 * satData->P1 + c5 * satData->P5;
Index: trunk/BNC/bncrinex.cpp
===================================================================
--- trunk/BNC/bncrinex.cpp	(revision 4263)
+++ trunk/BNC/bncrinex.cpp	(revision 4264)
@@ -655,10 +655,10 @@
       _out << setw(14) << setprecision(3) << obs.C1    << ' '  << ' '
            << setw(14) << setprecision(3) << obs.P1    << ' '  << ' '
-           << setw(14) << setprecision(3) << obs.L1()  << lli1 << ' '
-           << setw(14) << setprecision(3) << obs.S1()  << ' '  << ' '
+           << setw(14) << setprecision(3) << obs.l1()  << lli1 << ' '
+           << setw(14) << setprecision(3) << obs.s1()  << ' '  << ' '
            << setw(14) << setprecision(3) << obs.C2    << ' '  << ' ' << endl
            << setw(14) << setprecision(3) << obs.P2    << ' '  << ' ' 
-           << setw(14) << setprecision(3) << obs.L2()  << lli2 << ' '
-           << setw(14) << setprecision(3) << obs.S2()  << endl;
+           << setw(14) << setprecision(3) << obs.l2()  << lli2 << ' '
+           << setw(14) << setprecision(3) << obs.s2()  << endl;
     }
   }
