summaryrefslogtreecommitdiff
path: root/sirf.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2005-06-12 22:12:26 +0000
committerEric S. Raymond <esr@thyrsus.com>2005-06-12 22:12:26 +0000
commitc38b2c0cbeef051b21df2ebfc40f8fc94305b9b7 (patch)
tree1c4a68865ed282ec175a028ccb3d4fec6288cead /sirf.c
parentb968e2b28ad2862921dfb6f34551f5c78b48a2ba (diff)
downloadgpsd-c38b2c0cbeef051b21df2ebfc40f8fc94305b9b7.tar.gz
Rob Jansssen's second-round TSIP patches.
Diffstat (limited to 'sirf.c')
-rw-r--r--sirf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sirf.c b/sirf.c
index aa2cbfdb..bd1485c5 100644
--- a/sirf.c
+++ b/sirf.c
@@ -406,7 +406,7 @@ gps_mask_t sirf_parse(struct gps_device_t *session, unsigned char *buf, size_t l
leap ^= 0xff;
gpsd_report(2, "leap-seconds is %d\n", leap);
session->context->leap_seconds = (int)leap;
- session->context->valid = LEAP_SECOND_VALID;
+ session->context->valid |= LEAP_SECOND_VALID;
}
if (session->context->valid & LEAP_SECOND_VALID) {
@@ -577,7 +577,7 @@ gps_mask_t sirf_parse(struct gps_device_t *session, unsigned char *buf, size_t l
session->gpsdata.nmea_date.tm_mon = (int)getub(buf, 5) - 1;
session->gpsdata.nmea_date.tm_year = (int)getuw(buf, 6) - 1900;
session->context->leap_seconds = (int)getuw(buf, 8);
- session->context->valid = LEAP_SECOND_VALID;
+ session->context->valid |= LEAP_SECOND_VALID;
#ifdef NTPSHM_ENABLE
if ((session->time_seen & TIME_SEEN_UTC_2) == 0)
gpsd_report(4, "valid time in message 0x34, seen=0x%02x\n",
@@ -635,7 +635,7 @@ gps_mask_t sirf_parse(struct gps_device_t *session, unsigned char *buf, size_t l
if (IS_HIGHEST_BIT(session->time_seen,TIME_SEEN_UTC_2))
(void)ntpshm_put(session, session->gpsdata.fix.time + 0.8);
#endif /* NTPSHM_ENABLE */
- session->context->valid = LEAP_SECOND_VALID;
+ session->context->valid |= LEAP_SECOND_VALID;
}
session->gpsdata.gdop = (int)getub(buf, 34) / 5.0;