diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-10-05 15:19:44 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-10-05 15:27:29 +0200 |
commit | 639dff1f281722c8238788b556439e7078e0eece (patch) | |
tree | 0bc1284ae29c45cff3795a62ac325cee2355070f | |
parent | 774858d42aefc8fe583906cb889242bfa8fa10c7 (diff) |
compat: RHEL backported netlink changes
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | src/compat/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h index 5903ac1..b422c6d 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -433,7 +433,7 @@ static inline struct nlattr **genl_family_attrbuf(const struct genl_family *fami #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 10, 0) #include <net/genetlink.h> -#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0) +#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0) && !defined(ISRHEL7) #define genl_register_family(a) genl_register_family_with_ops(a, (struct genl_ops *)genl_ops, ARRAY_SIZE(genl_ops)) #else #define genl_register_family(a) genl_register_family_with_ops(a, genl_ops) |