Index: trunk/BNC/src/bnchelp.html
===================================================================
--- trunk/BNC/src/bnchelp.html	(revision 10981)
+++ trunk/BNC/src/bnchelp.html	(revision 10982)
@@ -1618,10 +1618,9 @@
 </p>
 <p>
-When producing RINEX Observation files from mountpoints like 'BRUX00BEL0', 'WTZR_RTCM3', and 'BRUX0', the following skeleton filenames would be accepted
+When producing RINEX Observation files from mountpoints like 'BRUX00BEL0' or 'WTZR_RTCM3', the following skeleton filenames would be accepted
 </p>
 <pre>
    BRUX00BEL.skl (9 char corresponding to RINEX version 3,4)
    WTZR_RTCM.skl (9 char corresponding to RINEX version 3,4)
-   BRUX.skl (4 char corresponding to RINEX version 2)
 </pre>
 <p>
Index: trunk/BNC/src/bncrinex.cpp
===================================================================
--- trunk/BNC/src/bncrinex.cpp	(revision 10981)
+++ trunk/BNC/src/bncrinex.cpp	(revision 10982)
@@ -349,13 +349,11 @@
   int statIDlength;
   if (n > 9) {
-    statIDlength = 9; // rnx3
-  }
-  else if (n > 4) {
-    statIDlength = 4; // rnx2
-  }
-  else {
+    statIDlength = 9; // rnx3/4
+  }
+  else if (n >= 4) {
     statIDlength = n;
   }
-  QString ID = _statID.left(statIDlength);
+  QString ID = _statID.left(statIDlength); 
+
   ID = ID.toUpper();
 
