Invoke the clock check even if the time stamp nanoseconds field is zero.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>master
parent
b295df24b5
commit
ef49629387
2
port.c
2
port.c
|
@ -2188,7 +2188,7 @@ enum fsm_event port_event(struct port *p, int fd_index)
|
||||||
msg_put(msg);
|
msg_put(msg);
|
||||||
return EV_NONE;
|
return EV_NONE;
|
||||||
}
|
}
|
||||||
if (msg->hwts.ts.tv_sec && msg->hwts.ts.tv_nsec) {
|
if (msg_sots_valid(msg)) {
|
||||||
clock_check_ts(p->clock, msg->hwts.ts);
|
clock_check_ts(p->clock, msg->hwts.ts);
|
||||||
}
|
}
|
||||||
if (port_ignore(p, msg)) {
|
if (port_ignore(p, msg)) {
|
||||||
|
|
Loading…
Reference in New Issue