summaryrefslogtreecommitdiff
path: root/gpscap.py
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-10-31 23:49:55 -0400
committerEric S. Raymond <esr@thyrsus.com>2013-10-31 23:49:55 -0400
commit2ae441d42411d416e9e3f39c60f6c14d23708f74 (patch)
tree37b14bf6edc83e62ab1d14d64040161d91f75220 /gpscap.py
parent5af8826c921dfe73e04a24e1e092a04c97f577a2 (diff)
downloadgpsd-2ae441d42411d416e9e3f39c60f6c14d23708f74.tar.gz
Contain the assumption that time hinting is done to NTPD.
Because it might be going to chrony. Or something else. No logic changes, just name changes and one new derived #define, TIMEHINT_ENABLE.
Diffstat (limited to 'gpscap.py')
-rw-r--r--gpscap.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/gpscap.py b/gpscap.py
index b00f46c7..423cea17 100644
--- a/gpscap.py
+++ b/gpscap.py
@@ -139,13 +139,13 @@ class GPSDictionary(ConfigParser.RawConfigParser):
nmea = self.get(dev, "nmea")
ofp.write("<td>%s</td>\n" % nmea)
if self.has_option(dev, "pps") and self.get(dev, "pps") == "True":
- pps_accuracy = ntp_offset = ""
+ pps_accuracy = time_offset = ""
if self.has_option(dev, "pps_accuracy"):
pps_accuracy = self.get(dev, "pps_accuracy")
- if self.has_option(dev, "ntp_offset"):
- ntp_offset = self.get(dev, "ntp_offset")
- if pps_accuracy and ntp_offset:
- ofp.write("<td>%s<br>%s</td>\n" % (pps_accuracy, ntp_offset))
+ if self.has_option(dev, "time_offset"):
+ time_offset = self.get(dev, "time_offset")
+ if pps_accuracy and time_offset:
+ ofp.write("<td>%s<br>%s</td>\n" % (pps_accuracy, time_offset))
else:
ofp.write("<td>?<br>\n")
else: