+* [Bug 1169] quiet compiler warnings
+* Re-enable gcc -Wstrict-prototypes when not building with OpenSSL
+* Enable gcc -Wstrict-overflow
+* ntpq/ntpdc emit newline after accepting password on Windows
+ * Updates from Dave Mills:
+ * ntp-keygen.c: Updates.
+ * Fix the error return and syslog function ID in refclock_{param,ppsapi}.
+ * Make sure syspoll is within the peer's minpoll/maxpoll bounds.
+ * ntp_crypto.c: Use sign_siglen, not len. sign key filename cleanup.
+ * Bump NTP_MAXEXTEN from 1024 to 2048, update values for some field lengths.
(4.2.5p167) 2009/04/26 Released by Harlan Stenn <stenn@ntp.org>
* Crypto cleanup from Dave Mills.
(4.2.5p166) 2009/04/25 Released by Harlan Stenn <stenn@ntp.org>
struct refclock_atom *ap /* atom structure pointer */
)
{
- if (ap->handle == NULL) {
+ if (!ap->handle) {
if (time_pps_create(fddev, &ap->handle) < 0) {
msyslog(LOG_ERR,
- "refclock_atom: time_pps_create failed: %m");
- return (errno);
+ "refclock_ppsapi: time_pps_create: %m");
+ return (0);
}
}
return (1);