diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-12-21 00:42:30 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-12-21 00:58:02 +0100 |
commit | 55cf88481b5a1eb1609528b5a6637e3a53fda491 (patch) | |
tree | 6163ec22691089d16a15a8678db6fa6ea5b62525 /src/netlink.c | |
parent | 0462706042913d83317cdb4d21753f81eed2d48a (diff) |
compat: kernels < 3.13 modified genl_ops
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/netlink.c')
-rw-r--r-- | src/netlink.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/netlink.c b/src/netlink.c index 6abdab0..b703b17 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -468,7 +468,12 @@ out_nodev: return ret; } -static const struct genl_ops genl_ops[] = { +#ifndef COMPAT_CANNOT_USE_CONST_GENL_OPS +static const +#else +static +#endif +struct genl_ops genl_ops[] = { { .cmd = WG_CMD_GET_DEVICE, #ifndef COMPAT_CANNOT_USE_NETLINK_START |