Invoke the clock check even if the time stamp nanoseconds field is zero.

Signed-off-by: Richard Cochran <richardcochran@gmail.com>
master
Richard Cochran 2014-12-05 23:46:35 +01:00
parent b295df24b5
commit ef49629387
1 changed files with 1 additions and 1 deletions

2
port.c
View File

@ -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)) {