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

0 comments on commit b530c02

Please sign in to comment.