]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
[Bug 3657] Wrong "Autokey group mismatch" debug message
authorJuergen Perlinger <perlinger@ntp.org>
Sat, 4 Apr 2020 06:48:51 +0000 (08:48 +0200)
committerJuergen Perlinger <perlinger@ntp.org>
Sat, 4 Apr 2020 06:48:51 +0000 (08:48 +0200)
bk: 5e882dd3mUpUKvY8mhiszxV9dkgwgQ

ChangeLog
ntpd/ntp_proto.c

index 35d5d36c2faf434a0bbc79ed85afe3473cc63039..46f98936a0887d1f52252bedc15485a040fb5bbd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+---
+* [Bug 3657] Wrong "Autokey group mismatch" debug message <perlinger@ntp.org>
+
 ---
 (4.2.8p14) 2020/03/03 Released by Harlan Stenn <stenn@ntp.org>
 
index 33e97ef9d9893a2108bff8304b4b8c4fbfee529c..f7a5d5c5ddb71181c14f9c70c8420daede552108 100644 (file)
@@ -1681,8 +1681,9 @@ receive(
                 * MODE_ACTIVE KoDs, which will time out eventually.
                 */
                if (   hisleap != LEAP_NOTINSYNC
-                   && (hisstratum < sys_floor || hisstratum >= sys_ceiling)) {
-                       DPRINTF(2, ("receive: AM_NEWPASS drop: Autokey group mismatch\n"));
+                      && (hisstratum < sys_floor || hisstratum >= sys_ceiling)) {
+                       DPRINTF(2, ("receive: AM_NEWPASS drop: Remote stratum (%d) out of range\n",
+                                       hisstratum));
                        sys_declined++;
                        return;                 /* no help */
                }