From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id C719C3858C66; Thu, 12 Jan 2023 14:09:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C719C3858C66 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1673532589; bh=up9AIK+g+ICDsZuFy2gPBvxcvX6qz4ni9kUsol/jpwA=; h=To:Subject:Date:From:From; b=kjmP3G9jb1NoHA0iMHKMFYU3WF9jqa5diEqnGRC3RvVVcIMRrK271wXI2aS8+2AN1 ZB+I5aQj821x5GPx8fowN1ns8/5WKnS7kUaPVeTA9sRYPjE11VFPyEVmvBeCyqOJGc kY9UcI9MA/dJzevO/Qb4NYBaB1AMdMWNu4dGaGLc= To: cygwin-apps-cvs@sourceware.org Subject: [rebase - The rebase tool, core of the automatic rebase facility during postinstall] branch master, updated. 8e3e0029fd8a0e6cbc4ee4a0969f21220d189c1d X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 6d7b8e762a1d4fab271a22d96d56155d168ae4c6 X-Git-Newrev: 8e3e0029fd8a0e6cbc4ee4a0969f21220d189c1d Message-Id: <20230112140949.C719C3858C66@sourceware.org> Date: Thu, 12 Jan 2023 14:09:49 +0000 (GMT) From: Corinna Vinschen List-Id: https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/rebase.git;h=8e3e0029fd8a0e6cbc4ee4a0969f21220d189c1d commit 8e3e0029fd8a0e6cbc4ee4a0969f21220d189c1d Author: Corinna Vinschen Date: Thu Jan 12 15:08:32 2023 +0100 Bump to version 4.6.2 Signed-off-by: Corinna Vinschen https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/rebase.git;h=e84b43ea3866775b16dc6de0ff089265f0fd0ebb commit e84b43ea3866775b16dc6de0ff089265f0fd0ebb Author: Corinna Vinschen Date: Thu Jan 12 15:07:01 2023 +0100 peflags: fix tsaware warning message The warning message is emitted for non-executables and DLLs alike, but the message itself does not differentiate these cases and so is unclear for DLLs. Signed-off-by: Corinna Vinschen Diff: --- configure.ac | 2 +- peflags.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index f66c2a6e140d..0ab6b53943bd 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # configure.ac for rebase AC_PREREQ([2.64]) -AC_INIT([rebase], [4.6.1], [cygwin@cygwin.com]) +AC_INIT([rebase], [4.6.2], [cygwin@cygwin.com]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([peflags.c]) AC_PREFIX_DEFAULT([/usr]) diff --git a/peflags.c b/peflags.c index bb333d7b8aa8..b1cd7a851e43 100644 --- a/peflags.c +++ b/peflags.c @@ -388,7 +388,8 @@ do_mark (const char *pathname) && (old_pe_characteristics & IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE)) { fprintf (stderr, - "Warning: file is non-executable but has tsaware set (%s).\n", + "Warning: file is %s but has tsaware set (%s).\n", + is_dll ? "a DLL" : "non-executable", pathname); } }