From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id CA3443858039; Wed, 15 Mar 2023 21:10:36 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CA3443858039 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1678914636; bh=JoX78AKbgtN/MuON9N7/zNp2QYAnJNxXDYdG7BK5O/U=; h=From:To:Subject:Date:From; b=RlYzjxOwO6EoNjcwtMWmLXuOE8hMnVE7D83IMgm2IuTUDpbZG3+Uu4t+h8K5DhGlv jUp6PZiwUetDAC496vX3bUh91yysddTLp1ENJJ0awap7Mu9RINigGvjYxZjzy+0YET ONTYzbm4I5Bx/5ycwdBGQpdpO4cGsquxLJDOQIWQ= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/cygwin-3_4-branch] Cygwin: kill(1): don't print spurious error message X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/cygwin-3_4-branch X-Git-Oldrev: f55ac6661cd586a5e63fb283b6a92aa1861d8fda X-Git-Newrev: e9b1d1ce7f3f20af2860695ab947124219ca6531 Message-Id: <20230315211036.CA3443858039@sourceware.org> Date: Wed, 15 Mar 2023 21:10:36 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3De9b1d1ce7f3= f20af2860695ab947124219ca6531 commit e9b1d1ce7f3f20af2860695ab947124219ca6531 Author: Corinna Vinschen AuthorDate: Wed Mar 15 21:50:32 2023 +0100 Commit: Corinna Vinschen CommitDate: Wed Mar 15 22:09:28 2023 +0100 Cygwin: kill(1): don't print spurious error message =20 Make kill -V and kill -l exit immediately, thus stopping to print "not enough arguments" accidentally. =20 Fixes: ef48a2cad3704 ("* kill.cc (prog_name) New global variable.") Fixes: c49fa762631f9 ("* Makefile.in (kill.exe): Add as a specific targ= et.") Signed-off-by: Corinna Vinschen 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 --------- =20 -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); } =20 static const char * @@ -126,6 +127,7 @@ listsig (const char *in_sig) else printf ("%d\n", sig); } + exit (0); } =20 static void