netlink: fix debug text typo in message parser

Signed-off-by: Igor Ostapenko <pm@igoro.pro>
Pull-request: https://github.com/freebsd/freebsd-src/pull/942
This commit is contained in:
Igor Ostapenko 2023-12-18 14:37:36 +02:00 committed by Ed Maste
parent e3b9058e5c
commit 66d77e0f73

View file

@ -148,7 +148,7 @@ nl_parse_attrs_raw(struct nlattr *nla_head, int len, const struct nlattr_parser
if (error != 0) {
uint32_t off = (char *)nla - (char *)npt->hdr;
nlmsg_report_err_offset(npt, off);
NL_LOG(LOG_DEBUG3, "parse failed att offset %u", off);
NL_LOG(LOG_DEBUG3, "parse failed at offset %u", off);
return (error);
}
} else {