From 494643d1fb3bf69a8d67d935ba043ed367590dde Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Thu, 5 Apr 2018 11:17:51 -0700 Subject: [PATCH] port: Correct log message interval field of unicast Sync messages. According to the standard, this field is special for unicast messages. Signed-off-by: Richard Cochran --- port.c | 1 + 1 file changed, 1 insertion(+) diff --git a/port.c b/port.c index 1ee05fe..cf9e2a3 100644 --- a/port.c +++ b/port.c @@ -1418,6 +1418,7 @@ static int port_tx_sync(struct port *p, struct address *dst) if (dst) { msg->address = *dst; msg->header.flagField[0] |= UNICAST; + msg->header.logMessageInterval = 0x7f; } err = port_prepare_and_send(p, msg, event); if (err) {