summaryrefslogtreecommitdiff
path: root/driver_proto.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2011-03-23 08:20:38 -0400
committerEric S. Raymond <esr@thyrsus.com>2011-03-23 08:20:38 -0400
commitfbfc0b76ba6223d5152a412a9e31e3729342a979 (patch)
treebd8437d172d6d9b75016e82b40a4928a20a24015 /driver_proto.c
parentb3dbcae121b94dacff00354169520117da0a13d6 (diff)
downloadgpsd-fbfc0b76ba6223d5152a412a9e31e3729342a979.tar.gz
Make all drivers set the PPSTIME_IS mask where appropriate. It's not yet used.
All regression tests pass.
Diffstat (limited to 'driver_proto.c')
-rw-r--r--driver_proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver_proto.c b/driver_proto.c
index 2e608b14..fdea23b1 100644
--- a/driver_proto.c
+++ b/driver_proto.c
@@ -154,7 +154,7 @@ _proto__msg_utctime(struct gps_device_t *session, unsigned char *buf, size_t dat
session->context->leap_seconds = GET_GPS_LEAPSECONDS();
session->newdata.time = gpsd_gpstime_resolve(session, gps_week, tow / 1000.0);
- return TIME_IS | ONLINE_IS;
+ return TIME_IS | PPSTIME_IS | ONLINE_IS;
}
/**