Changeset 2352 in ntrip for trunk/rtcm3torinex/rtcm3torinex.c
- Timestamp:
- Mar 5, 2010, 12:11:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/rtcm3torinex.c
r2346 r2352 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c,v 1.3 1 2010/01/16 11:07:57 weber Exp $3 $Id: rtcm3torinex.c,v 1.38 2010/03/01 13:48:25 stoecker Exp $ 4 4 Copyright (C) 2005-2008 by Dirk Stöcker <stoecker@alberding.eu> 5 5 … … 55 55 56 56 /* CVS revision and version */ 57 static char revisionstr[] = "$Revision: 1.3 1$";57 static char revisionstr[] = "$Revision: 1.38 $"; 58 58 59 59 #ifndef COMPILEDATE … … 490 490 SKIPBITS(4) /* smind, smint */ 491 491 492 while(numsats-- )492 while(numsats-- && gnss->numsats < GNSS_MAXSATS) 493 493 { 494 494 int sv, code, l1range, c,l,s,ce,le,se,amb=0; … … 658 658 SKIPBITS(4) /* smind, smint */ 659 659 660 while(numsats-- )660 while(numsats-- && gnss->numsats < GNSS_MAXSATS) 661 661 { 662 662 int sv, code, l1range, c,l,s,ce,le,se,amb=0; … … 1684 1684 1685 1685 #ifndef NO_RTCM3_MAIN 1686 static char datestr[] = "$Date: 2010/0 1/16 11:07:57$";1686 static char datestr[] = "$Date: 2010/03/01 13:48:25 $"; 1687 1687 1688 1688 /* The string, which is send as agent in HTTP request */
Note:
See TracChangeset
for help on using the changeset viewer.