[rebase - The rebase tool, core of the automatic rebase facility during postinstall] branch master, updated. 8e3e0029fd8a0e6cbc4ee4a0969f21220d189c1d
Corinna Vinschen via Cygwin-apps-cvs <[email protected]> Thu, 12 Jan 2023 14:09:49 +0000 (GMT)
| Newsgroups | gmane.os.cygwin.cvs.apps |
|---|---|
| Message-ID | <[email protected]> |
https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/rebase.git;h=8e3e0029fd8a0e6cbc4ee4a0969f21220d189c1d commit 8e3e0029fd8a0e6cbc4ee4a0969f21220d189c1d Author: Corinna Vinschen <[email protected]> Date: Thu Jan 12 15:08:32 2023 +0100 Bump to version 4.6.2 Signed-off-by: Corinna Vinschen <[email protected]> https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/rebase.git;h=e84b43ea3866775b16dc6de0ff089265f0fd0ebb commit e84b43ea3866775b16dc6de0ff089265f0fd0ebb Author: Corinna Vinschen <[email protected]> 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 <[email protected]> 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], [[email protected]]) +AC_INIT([rebase], [4.6.2], [[email protected]]) 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); } }