Changeset 479 in ntrip
- Timestamp:
- Aug 14, 2007, 12:14:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/rtcm3torinex.c
r478 r479 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c,v 1. 19 2007/08/06 07:42:25stoecker Exp $3 $Id: rtcm3torinex.c,v 1.20 2007/08/06 07:43:26 stoecker Exp $ 4 4 Copyright (C) 2005-2006 by Dirk Stoecker <stoecker@euronik.eu> 5 5 … … 51 51 52 52 /* CVS revision and version */ 53 static char revisionstr[] = "$Revision: 1. 19$";53 static char revisionstr[] = "$Revision: 1.20 $"; 54 54 55 55 #ifndef COMPILEDATE … … 1021 1021 1022 1022 #ifndef NO_RTCM3_MAIN 1023 static char datestr[] = "$Date: 2007/08/06 07:4 2:25$";1023 static char datestr[] = "$Date: 2007/08/06 07:43:26 $"; 1024 1024 1025 1025 /* The string, which is send as agent in HTTP request */ … … 1383 1383 "Authorization: Basic " 1384 1384 , args.data, AGENTSTRING, revisionstr); 1385 if(i > MAXDATASIZE-40 &&i < 0) /* second check for old glibc */1385 if(i > MAXDATASIZE-40 || i < 0) /* second check for old glibc */ 1386 1386 { 1387 1387 RTCM3Error("Requested data too long\n");
Note:
See TracChangeset
for help on using the changeset viewer.