aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorGustavo A. R. Silva <garsilva@embeddedor.com>2018-01-22 16:34:09 -0600
committerSteffen Klassert <steffen.klassert@secunet.com>2018-01-23 10:56:36 +0100
commit545d8ae7affff7fb4f8bfd327c7c7790056535c4 (patch)
treea2d751970d129329f5d95ff34f0533466ccd445b /net
parentxfrm: Fix eth_hdr(skb)->h_proto to reflect inner IP version (diff)
downloadlinux-dev-545d8ae7affff7fb4f8bfd327c7c7790056535c4.tar.xz
linux-dev-545d8ae7affff7fb4f8bfd327c7c7790056535c4.zip
xfrm: fix boolean assignment in xfrm_get_type_offload
Assign true or false to boolean variables instead of an integer value. This issue was detected with the help of Coccinelle. Fixes: ffdb5211da1c ("xfrm: Auto-load xfrm offload modules") Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'net')
-rw-r--r--net/xfrm/xfrm_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
index 2d486492acdb..a3785f538018 100644
--- a/net/xfrm/xfrm_state.c
+++ b/net/xfrm/xfrm_state.c
@@ -317,7 +317,7 @@ retry:
if (!type && try_load) {
request_module("xfrm-offload-%d-%d", family, proto);
- try_load = 0;
+ try_load = false;
goto retry;
}