bk: 5539d3devZyFxjwetRB6WgWI2f65jg
---
* [Bug 2794] Clean up kernel clock status reports.
+* [Bug 2800] refclock_true.c true_debug() can't open debug log because
+ of incompatible open/fdopen parameters.
* [Bug 2804] install-local-data assumes GNU 'find' semantics.
* [Bug 2808] GPSD_JSON driver enhancements, step 1.
Various improvements, see http://bugs.ntp.org/2808 for details.
"/tmp/true%d.debug", up->unit);
fd = open(filename, O_CREAT | O_WRONLY | O_EXCL,
0600);
- if (fd >= 0 && (up->debug = fdopen(fd, "r+"))) {
+ if (fd >= 0 && (up->debug = fdopen(fd, "w"))) {
#ifdef HAVE_SETVBUF
static char buf[BUFSIZ];