On Sun, 7 Aug 2022 08:51:50 GMT, Julian Waters wrote:
>> EXIT_FAILURE is defined as -1 in NativeCreds.c, and is not only unused, but
>> also incorrect, as it incorrectly redefines the existing EXIT_FAILURE, which
>> is actually 1 on Windows, not -1. Can be safely commented out as it isn't
>> u
> EXIT_FAILURE is defined as -1 in NativeCreds.c, and is not only unused, but
> also incorrect, as it incorrectly redefines the existing EXIT_FAILURE, which
> is actually 1 on Windows, not -1. Can be safely commented out as it isn't
> used anywhere, except for in a call to ExitProcess which has
On Sat, 6 Aug 2022 15:12:44 GMT, raspberry-hu wrote:
> remove unused imports
This pull request has now been integrated.
Changeset: 8e2c006c
Author:raspberry-hu <76903172+raspberry...@users.noreply.github.com>
Committer: John Jiang
URL:
https://git.openjdk.org/jdk/commit/8e2c006cd149
Hi Patrick,
On 6/08/2022 7:05 pm, Patrick Pfeifer wrote:
On Mon, 18 Jul 2022 15:22:01 GMT, Jonathan Gibbons wrote:
Please review these changes to the nroff manpage files so that they match their
markdown sources that Oracle maintains.
Not a problem with this PR as such, but we still have a
Hello,
there is a longstanding issue in the PostgreSQL JDBC driver which reads
secret keys in PKCS#8 format, but does not support the newer PKCS#5 2.0
(PBES2) modes (-v1 works). The (naive) code is here:
pgjdbc/LazyKeyManager.java at 80d4ed34c99d51dd8b06df00baad0265fd620fec ·
pgjdbc/pgjdbc · GitH
On Fri, 5 Aug 2022 21:49:01 GMT, Mark Powers wrote:
>> https://bugs.openjdk.org/browse/JDK-8290975
>
> Mark Powers has updated the pull request incrementally with one additional
> commit since the last revision:
>
> comment applies to two files
Marked as reviewed by mullan (Reviewer).
-
> EXIT_FAILURE is defined as -1 in NativeCreds.c, and is not only unused, but
> also incorrect, as it incorrectly redefines the existing EXIT_FAILURE, which
> is actually 1 on Windows, not -1. Can be safely commented out as it isn't
> used anywhere, except for in a call to ExitProcess which has