examples/ipsec-secgw: fix ESP flow error log
authorPraveen Shetty <praveen.shetty@intel.com>
Wed, 6 May 2020 11:02:41 +0000 (12:02 +0100)
committerAkhil Goyal <akhil.goyal@nxp.com>
Mon, 11 May 2020 11:17:43 +0000 (13:17 +0200)
commit5ec3eb3b839ded5f0f04754721475433bf5d69df
tree78a48a059f816e18f7ff10e9152156f5f741266b
parent6a6b5d5616c976eb306cbdbcf9241aba08d2516e
examples/ipsec-secgw: fix ESP flow error log

Function create_ipsec_esp_flow returns a negative number in case of any
failure and we are passing this to strerror to display the error message.
But strerror()'s argument cannot be negative.
In case of failure, displaying exact error message to console is handled
in create_ipsec_esp_flow function.
So it is not required to print the error message again using strerror.
This patch will remove the unnecessary calling of strerror function
to fix the negative argument passing to strerror issue.

Coverity issue: 357691
Fixes: 6738c0a95695 ("examples/ipsec-secgw: support flow director")

Signed-off-by: Praveen Shetty <praveen.shetty@intel.com>
Acked-by: Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
Acked-by: Anoob Joseph <anoobj@marvell.com>
examples/ipsec-secgw/sa.c