summaryrefslogtreecommitdiff
path: root/src/nlmsg.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-11-11 13:57:57 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2010-11-11 13:57:57 +0100
commit895839909804d91f6e897bef1c1e32c0b0a9db94 (patch)
tree69c638314836fd609cca9dfdbb771d2ab0f20dc9 /src/nlmsg.c
parent184d6ab767d6432a506ea00ae33ba7e054712786 (diff)
downloadlibmnl-895839909804d91f6e897bef1c1e32c0b0a9db94.tar.gz
libmnl-895839909804d91f6e897bef1c1e32c0b0a9db94.zip
nlmsg: use bool for mnl_nlmsg_ok()
Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/nlmsg.c')
-rw-r--r--src/nlmsg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nlmsg.c b/src/nlmsg.c
index a3dc0c1..e05fb50 100644
--- a/src/nlmsg.c
+++ b/src/nlmsg.c
@@ -156,7 +156,7 @@ void *mnl_nlmsg_get_payload_offset(const struct nlmsghdr *nlh, size_t offset)
* The len parameter may become negative in malformed messages during message
* iteration, that is why we use a signed integer.
*/
-int mnl_nlmsg_ok(const struct nlmsghdr *nlh, int len)
+bool mnl_nlmsg_ok(const struct nlmsghdr *nlh, int len)
{
return len >= (int)sizeof(struct nlmsghdr) &&
nlh->nlmsg_len >= sizeof(struct nlmsghdr) &&