Changeset 1825 in ntrip for trunk/BNC/RTCM3
- Timestamp:
- May 4, 2009, 12:38:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/rtcm3torinex.c
r1822 r1825 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c,v 1.2 2 2008/12/19 10:16:59mervart Exp $3 $Id: rtcm3torinex.c,v 1.23 2009/04/30 11:40:45 mervart 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.2 2$";57 static char revisionstr[] = "$Revision: 1.23 $"; 58 58 59 59 #ifndef COMPILEDATE … … 245 245 for(l = leap; l->taicount && year >= l->year; ++l) 246 246 { 247 if(year > l->year || month > l->month )247 if(year > l->year || month > l->month || (month == l->month && day > l->day)) 248 248 ls = l->taicount - GPSLEAPSTART; 249 249 } … … 1689 1689 1690 1690 #ifndef NO_RTCM3_MAIN 1691 static char datestr[] = "$Date: 200 8/12/19 10:16:59$";1691 static char datestr[] = "$Date: 2009/04/30 11:40:45 $"; 1692 1692 1693 1693 /* The string, which is send as agent in HTTP request */
Note:
See TracChangeset
for help on using the changeset viewer.