lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sun, 13 Dec 2020 16:25:03 +0200 From: Tariq Toukan <tariqt@...dia.com> To: "John W . Linville" <linville@...driver.com> Cc: netdev@...r.kernel.org, Roy Novich <royno@...dia.com>, Tariq Toukan <tariqt@...dia.com> Subject: [PATCH ethtool] ethtool: do_sset return correct value on fail From: Roy Novich <royno@...dia.com> The return value for do_sset was constant and returned 0. This value is misleading when returned on operation failure. Changed return value to the correct function err status. Fixes: 32c8037055f5 ("Initial import of ethtool version 3 + a few patches.") Signed-off-by: Roy Novich <royno@...dia.com> Signed-off-by: Tariq Toukan <tariqt@...dia.com> --- ethtool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethtool.c b/ethtool.c index 1d9067e774af..5cc875c64591 100644 --- a/ethtool.c +++ b/ethtool.c @@ -3287,7 +3287,7 @@ static int do_sset(struct cmd_context *ctx) } } - return 0; + return err; } static int do_gregs(struct cmd_context *ctx) -- 2.21.0
Powered by blists - more mailing lists