public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] elfcompress: fix exit status in case of an error
@ 2021-05-12 16:00 Dmitry V. Levin
  2021-05-12 20:29 ` Mark Wielaard
  0 siblings, 1 reply; 6+ messages in thread
From: Dmitry V. Levin @ 2021-05-12 16:00 UTC (permalink / raw)
  To: elfutils-devel

Exit status of 255 in case of an error is probably not what elfcompress
users expect, change it to 1.

Reported-by: Vitaly Chikunov <vt@altlinux.org>
Fixes: 92acb57eb046 ("elfcompress: New utility.")
---
 src/ChangeLog     | 2 ++
 src/elfcompress.c | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/ChangeLog b/src/ChangeLog
index de130f79..bc6ffc87 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
 2021-05-12  Dmitry V. Levin  <ldv@altlinux.org>
 
+	* elfcompress.c (main): Return 1 instead of -1 in case of an error.
+
 	* elfcompress.c (process_file): Remove redundant assignment in case of
 	"Nothing to do".
 
diff --git a/src/elfcompress.c b/src/elfcompress.c
index 05f3bc2c..dacaff32 100644
--- a/src/elfcompress.c
+++ b/src/elfcompress.c
@@ -1358,5 +1358,5 @@ main (int argc, char **argv)
   while (++remaining < argc);
 
   free_patterns ();
-  return result;
+  return !!result;
 }
-- 
ldv

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

end of thread, other threads:[~2021-05-13 13:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-12 16:00 [PATCH] elfcompress: fix exit status in case of an error Dmitry V. Levin
2021-05-12 20:29 ` Mark Wielaard
2021-05-12 20:35   ` Dmitry V. Levin
2021-05-12 21:13     ` Mark Wielaard
2021-05-12 21:52       ` [PATCH v2] " Dmitry V. Levin
2021-05-13 13:44         ` Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).