Correct spelling in syslog: getttimeofday -> gettimeofday

This commit is contained in:
gavin 2016-11-11 21:53:38 +00:00
parent 7db91e9092
commit f1983589e8

View File

@ -356,7 +356,7 @@ bridge_get_time_since_tc(struct bridge_if *bif, uint32_t *ticks)
if (gettimeofday(&ct, NULL) < 0) { if (gettimeofday(&ct, NULL) < 0) {
syslog(LOG_ERR, "bridge get time since last TC:" syslog(LOG_ERR, "bridge get time since last TC:"
"getttimeofday failed: %s", strerror(errno)); "gettimeofday failed: %s", strerror(errno));
return (-1); return (-1);
} }