Skip to content

Commit

Permalink
8317804: com/sun/jdi/JdwpAllowTest.java fails on Alpine 3.17 / 3.18
Browse files Browse the repository at this point in the history
Reviewed-by: cjplummer, mbaesken
  • Loading branch information
Alex Menkov committed Jan 11, 2024
1 parent e70cb4e commit b530c02
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -752,7 +752,7 @@ socketTransport_startListening(jdwpTransportEnv* env, const char* address,

if (isEqualIPv6Addr(listenAddr, mappedAny)) {
for (ai = addrInfo; ai != NULL; ai = ai->ai_next) {
if (isEqualIPv6Addr(listenAddr, in6addr_any)) {
if (isEqualIPv6Addr(ai, in6addr_any)) {
listenAddr = ai;
break;
}
Expand Down

5 comments on commit b530c02

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MBaesken
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/backport jdk22u

@openjdk
Copy link

@openjdk openjdk bot commented on b530c02 Jan 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MBaesken the backport was successfully created on the branch backport-MBaesken-b530c028 in my personal fork of openjdk/jdk22u. To create a pull request with this backport targeting openjdk/jdk22u:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit b530c028 from the openjdk/jdk repository.

The commit being backported was authored by Alex Menkov on 11 Jan 2024 and was reviewed by Chris Plummer and Matthias Baesken.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk22u:

$ git fetch https://github.com/openjdk-bots/jdk22u.git backport-MBaesken-b530c028:backport-MBaesken-b530c028
$ git checkout backport-MBaesken-b530c028
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk22u.git backport-MBaesken-b530c028

@MBaesken
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/backport jdk21u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on b530c02 Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MBaesken the backport was successfully created on the branch backport-MBaesken-b530c028 in my personal fork of openjdk/jdk21u-dev. To create a pull request with this backport targeting openjdk/jdk21u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit b530c028 from the openjdk/jdk repository.

The commit being backported was authored by Alex Menkov on 11 Jan 2024 and was reviewed by Chris Plummer and Matthias Baesken.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk21u-dev:

$ git fetch https://github.com/openjdk-bots/jdk21u-dev.git backport-MBaesken-b530c028:backport-MBaesken-b530c028
$ git checkout backport-MBaesken-b530c028
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk21u-dev.git backport-MBaesken-b530c028

Please sign in to comment.