public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
From: Corinna Vinschen <corinna@sourceware.org>
To: cygwin-cvs@sourceware.org
Subject: [newlib-cygwin/main] Cygwin: kill(1): don't print spurious error message
Date: Wed, 15 Mar 2023 21:10:46 +0000 (GMT)	[thread overview]
Message-ID: <20230315211046.D975F3858C1F@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=3569e3577c9de2b3a5cffba40597d2755bf5aacd

commit 3569e3577c9de2b3a5cffba40597d2755bf5aacd
Author:     Corinna Vinschen <corinna@vinschen.de>
AuthorDate: Wed Mar 15 21:50:32 2023 +0100
Commit:     Corinna Vinschen <corinna@vinschen.de>
CommitDate: Wed Mar 15 22:08:04 2023 +0100

    Cygwin: kill(1): don't print spurious error message
    
    Make kill -V and kill -l exit immediately, thus stopping to
    print "not enough arguments" accidentally.
    
    Fixes: ef48a2cad3704 ("* kill.cc (prog_name) New global variable.")
    Fixes: c49fa762631f9 ("* Makefile.in (kill.exe): Add as a specific target.")
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/release/3.4.7 | 7 +++++--
 winsup/utils/kill.cc        | 2 ++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/winsup/cygwin/release/3.4.7 b/winsup/cygwin/release/3.4.7
index eba5de47327d..a121d81b62fa 100644
--- a/winsup/cygwin/release/3.4.7
+++ b/winsup/cygwin/release/3.4.7
@@ -1,5 +1,8 @@
 Bug Fixes
 ---------
 
-Fix CPU_SET(3) macro type mismatch by making the macros type-safe.
-Addresses https://cygwin.com/pipermail/cygwin/2023-March/253220.html
+- Fix CPU_SET(3) macro type mismatch by making the macros type-safe.
+  Addresses https://cygwin.com/pipermail/cygwin/2023-March/253220.html
+
+- kill(1): don't print spurious error message.
+  Addresses: https://cygwin.com/pipermail/cygwin/2023-March/253291.html
diff --git a/winsup/utils/kill.cc b/winsup/utils/kill.cc
index 04c9774eb8eb..fc984c0b471e 100644
--- a/winsup/utils/kill.cc
+++ b/winsup/utils/kill.cc
@@ -65,6 +65,7 @@ print_version ()
 	  CYGWIN_VERSION_DLL_MAJOR % 1000,
 	  CYGWIN_VERSION_DLL_MINOR,
 	  strrchr (__DATE__, ' ') + 1);
+  exit (0);
 }
 
 static const char *
@@ -126,6 +127,7 @@ listsig (const char *in_sig)
       else
 	printf ("%d\n", sig);
     }
+  exit (0);
 }
 
 static void

                 reply	other threads:[~2023-03-15 21:10 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230315211046.D975F3858C1F@sourceware.org \
    --to=corinna@sourceware.org \
    --cc=cygwin-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).