Commit 545d8ae7 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Steffen Klassert

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: ffdb5211 ("xfrm: Auto-load xfrm offload modules")
Signed-off-by: default avatarGustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: default avatarSteffen Klassert <steffen.klassert@secunet.com>
parent 5efec5c6
...@@ -317,7 +317,7 @@ xfrm_get_type_offload(u8 proto, unsigned short family, bool try_load) ...@@ -317,7 +317,7 @@ xfrm_get_type_offload(u8 proto, unsigned short family, bool try_load)
if (!type && try_load) { if (!type && try_load) {
request_module("xfrm-offload-%d-%d", family, proto); request_module("xfrm-offload-%d-%d", family, proto);
try_load = 0; try_load = false;
goto retry; goto retry;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment