public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ethtool: return 1 as exit code on a settings(-s) failure.
@ 2015-04-16 20:55 Sridhar Samudrala
  2015-04-16 21:11 ` Ben Hutchings
  0 siblings, 1 reply; 2+ messages in thread
From: Sridhar Samudrala @ 2015-04-16 20:55 UTC (permalink / raw)
  To: bwh, netdev

Currently 0 is returned on both success or failure.

Signed-off-by: Sridhar Samudrala <sridhar.samudrala@intel.com>
---
 ethtool.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ethtool.c b/ethtool.c
index 01b13a6..163dff2 100644
--- a/ethtool.c
+++ b/ethtool.c
@@ -2352,7 +2352,7 @@ static int do_sset(struct cmd_context *ctx)
 	int argc = ctx->argc;
 	char **argp = ctx->argp;
 	int i;
-	int err;
+	int err = 0;
 
 	for (i = 0; i < ARRAY_SIZE(flags_msglvl); i++)
 		flag_to_cmdline_info(flags_msglvl[i].name,
@@ -2665,7 +2665,7 @@ static int do_sset(struct cmd_context *ctx)
 		}
 	}
 
-	return 0;
+	return err ? 1 : 0;
 }
 
 static int do_gregs(struct cmd_context *ctx)
-- 
1.8.4.2

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-04-16 21:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-16 20:55 [PATCH] ethtool: return 1 as exit code on a settings(-s) failure Sridhar Samudrala
2015-04-16 21:11 ` Ben Hutchings

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox