diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2006-05-28 18:52:17 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2006-05-28 18:52:17 +0000 |
commit | 00cabfec64682c10275a4490ecdbd3eca0995643 (patch) | |
tree | f9edcfa1ebc0b93fac5d58480843e93854644c54 /sys/dev/usb/udcf.c | |
parent | 1ca21d874f210bb6dfc8ee7395785d69089ec8fc (diff) |
Change the timedelta sensor descritpion so that the first four bytes contain
the NTP identifier (filled with spaces), followed by a space and the station
name (which might be the same as the NTP identifier).
All timedelta sensor have to follow this scheme as OpenNTPD needs it.
Requested by henning.
Diffstat (limited to 'sys/dev/usb/udcf.c')
-rw-r--r-- | sys/dev/usb/udcf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/udcf.c b/sys/dev/usb/udcf.c index 072d5eb25a2..9af2454d6a5 100644 --- a/sys/dev/usb/udcf.c +++ b/sys/dev/usb/udcf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udcf.c,v 1.8 2006/05/27 21:32:21 mbalmer Exp $ */ +/* $OpenBSD: udcf.c,v 1.9 2006/05/28 18:52:16 mbalmer Exp $ */ /* * Copyright (c) 2006 Marc Balmer <mbalmer@openbsd.org> @@ -56,8 +56,8 @@ int udcfdebug = 0; #define CLOCK_HBG 1 static const char *clockname[2] = { - "DCF77", - "HBG" }; + "DCF DCF77", + "HBG HBG" }; struct udcf_softc { USBBASEDEVICE sc_dev; /* base device */ |