diff options
author | Thomas Haller <thaller@redhat.com> | 2015-06-05 09:28:59 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2015-06-05 09:28:59 (GMT) |
commit | a9c789ccd4e24db3b14ffaf3f57ee3e3a57f6fca (patch) | |
tree | b69fca6d903c14eaf28f77d8f0dccefad4caee7d /include | |
parent | bbdcaea9a779885fedc04817dcc11953a377bfd5 (diff) | |
download | libnl-a9c789ccd4e24db3b14ffaf3f57ee3e3a57f6fca.zip libnl-a9c789ccd4e24db3b14ffaf3f57ee3e3a57f6fca.tar.gz libnl-a9c789ccd4e24db3b14ffaf3f57ee3e3a57f6fca.tar.bz2 |
lib: fix spelling of NL_CAPABILITY_NL_RECV_FAIL_TRUNC_NO_PEEK
Instead of NL_CAPABILITY_NL_RECV_FAIL_TRUNK_NO_PEEK.
Fixes: bbdcaea9a779885fedc04817dcc11953a377bfd5
Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/netlink/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/netlink/utils.h b/include/netlink/utils.h index c8b4d2e..4e5adcf 100644 --- a/include/netlink/utils.h +++ b/include/netlink/utils.h @@ -140,8 +140,8 @@ enum { * with NL_MSG_PEEK disabled. Previously, the failed message was wrongly * discarded and the next message received. */ - NL_CAPABILITY_NL_RECV_FAIL_TRUNK_NO_PEEK = 8, -#define NL_CAPABILITY_NL_RECV_FAIL_TRUNK_NO_PEEK NL_CAPABILITY_NL_RECV_FAIL_TRUNK_NO_PEEK + NL_CAPABILITY_NL_RECV_FAIL_TRUNC_NO_PEEK = 8, +#define NL_CAPABILITY_NL_RECV_FAIL_TRUNC_NO_PEEK NL_CAPABILITY_NL_RECV_FAIL_TRUNC_NO_PEEK __NL_CAPABILITY_MAX, NL_CAPABILITY_MAX = (__NL_CAPABILITY_MAX - 1), |