Commit 7dcf59de authored by Stanislav Kinsbursky's avatar Stanislav Kinsbursky Committed by Cyrill Gorcunov

libnetlink: typo fixed

Signed-off-by: 's avatarStanislav Kinsbursky <skinsbursky@parallels.com>
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
parent 3b7c1a1c
...@@ -29,7 +29,7 @@ int nlmsg_receive(char *buf, int len, int (*cb)(struct nlmsghdr *)) ...@@ -29,7 +29,7 @@ int nlmsg_receive(char *buf, int len, int (*cb)(struct nlmsghdr *))
if (hdr->nlmsg_type == NLMSG_DONE) if (hdr->nlmsg_type == NLMSG_DONE)
return 0; return 0;
if (hdr->nlmsg_type == NLMSG_ERROR) { if (hdr->nlmsg_type == NLMSG_ERROR) {
pr_err("Error getting scokets list\n"); pr_err("Error getting sockets list\n");
return -1; return -1;
} }
if (cb(hdr)) if (cb(hdr))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment