- Timestamp:
- May 4, 2009, 11:39:10 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/rtcm3torinex.c
r1270 r1824 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c,v 1.3 5 2008/12/02 15:50:20stoecker Exp $3 $Id: rtcm3torinex.c,v 1.36 2008/12/03 08:33:16 stoecker Exp $ 4 4 Copyright (C) 2005-2008 by Dirk Stöcker <stoecker@alberding.eu> 5 5 … … 51 51 52 52 /* CVS revision and version */ 53 static char revisionstr[] = "$Revision: 1.3 5$";53 static char revisionstr[] = "$Revision: 1.36 $"; 54 54 55 55 #ifndef COMPILEDATE … … 241 241 for(l = leap; l->taicount && year >= l->year; ++l) 242 242 { 243 if(year > l->year || month > l->month || day > l->day)243 if(year > l->year || month > l->month || (month == l->month && day > l->day)) 244 244 ls = l->taicount - GPSLEAPSTART; 245 245 } … … 1685 1685 1686 1686 #ifndef NO_RTCM3_MAIN 1687 static char datestr[] = "$Date: 2008/12/0 2 15:50:20$";1687 static char datestr[] = "$Date: 2008/12/03 08:33:16 $"; 1688 1688 1689 1689 /* The string, which is send as agent in HTTP request */
Note:
See TracChangeset
for help on using the changeset viewer.