sd-netlink: fix inverted log message

This commit is contained in:
Yu Watanabe
2019-06-29 03:27:24 +09:00
parent 7810d22171
commit 3bbe178466

View File

@@ -392,7 +392,7 @@ int socket_read_message(sd_netlink *rtnl) {
/* check that the size matches the message type */
if (new_msg->nlmsg_len < NLMSG_LENGTH(type_get_size(nl_type))) {
log_debug("sd-netlink: message larger than expected, dropping");
log_debug("sd-netlink: message is shorter than expected, dropping");
continue;
}