summaryrefslogtreecommitdiff
path: root/gpxlogger.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2014-08-24 10:17:59 -0400
committerEric S. Raymond <esr@thyrsus.com>2014-08-24 10:17:59 -0400
commit0658c2fb8d15fbe78fdd4edd1be184559ab53c32 (patch)
treeb61f6cc53b9aaf5d0575f93966b18a799861460b /gpxlogger.c
parente18934bf45246408915652f7b6a5e5ce66cccd8a (diff)
downloadgpsd-0658c2fb8d15fbe78fdd4edd1be184559ab53c32.tar.gz
Drop the obsolete tag field from JSON output. Bump the minor protocol number.
Required a regression-test rebuild, of course. The field is still set by the TSIP and SiRF drivers; the SiRF driver actually uses it. It may be possible to eliminate the TSIP uses, but so far attempting this has produced odd regression-test failures.
Diffstat (limited to 'gpxlogger.c')
-rw-r--r--gpxlogger.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gpxlogger.c b/gpxlogger.c
index b8829644..8bb7e226 100644
--- a/gpxlogger.c
+++ b/gpxlogger.c
@@ -89,7 +89,6 @@ static void print_fix(struct gps_data_t *gpsdata, double time)
(void)fprintf(logfile," <ele>%f</ele>\n", gpsdata->fix.altitude);
(void)fprintf(logfile," <time>%s</time>\n",
unix_to_iso8601(time, tbuf, sizeof(tbuf)));
- (void)fprintf(logfile," <src>GPSD tag=\"%s\"</src>\n", gpsdata->tag);
if (gpsdata->status == STATUS_DGPS_FIX)
(void)fprintf(logfile," <fix>dgps</fix>\n");
else