Browse Source

MT#55283 fix kernel versioning mixup

The wrong version was used in the version test

Change-Id: I0706a13074ce574c0ec73af6e72069147b499b80
pull/1747/head
Richard Fuchs 2 years ago
parent
commit
928e51a964
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel-module/xt_RTPENGINE.c

+ 1
- 1
kernel-module/xt_RTPENGINE.c View File

@ -95,7 +95,7 @@ MODULE_ALIAS("ip6t_RTPENGINE");
#define xt_action_param xt_target_param
#endif
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,4,0)
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0)
#define PAR_STATE_NET(p) (p)->state->net
#else
#define PAR_STATE_NET(p) (p)->net


Loading…
Cancel
Save