Skip to content

Commit ffeb9b5

Browse files
author
Eirik Bjørsnøs
committed
8342807: Update links in java.base to use https://
Reviewed-by: rriggs, ihse, jkern
1 parent afcc2b0 commit ffeb9b5

File tree

8 files changed

+17
-18
lines changed

8 files changed

+17
-18
lines changed

src/java.base/aix/native/libjli/java_md_aix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/*
3030
* Very limited AIX port of dladdr() for libjli.so.
3131
*
32-
* We try to mimic dladdr(3) on Linux (see http://linux.die.net/man/3/dladdr)
32+
* We try to mimic dladdr(3) on Linux (see https://linux.die.net/man/3/dladdr)
3333
* dladdr(3) is not POSIX but a GNU extension, and is not available on AIX.
3434
*
3535
* We only support Dl_info.dli_fname here as this is the only thing that is

src/java.base/linux/native/libsimdsort/xss-common-qsort.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* [3] https://github.com/simd-sorting/fast-and-robust: SPDX-License-Identifier:
5050
* MIT
5151
*
52-
* [4] http://mitp-content-server.mit.edu:18180/books/content/sectbyfn?collid=books_pres_0&fn=Chapter%2027.pdf&id=8030
52+
* [4] https://mitp-content-server.mit.edu/books/content/sectbyfn?collid=books_pres_0&fn=Chapter%2027.pdf&id=8030
5353
*
5454
*/
5555

src/java.base/share/man/keytool.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 1998, 2025, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -1661,7 +1661,7 @@ To import a certificate for the CA, complete the following process:
16611661

16621662
The `cacerts` keystore ships with a set of root certificates issued by the
16631663
CAs of [the Oracle Java Root Certificate program](
1664-
http://www.oracle.com/technetwork/java/javase/javasecarootcertsprogram-1876540.html).
1664+
https://www.oracle.com/java/technologies/javase/carootcertsprogram.html).
16651665
If you request a signed certificate from a CA, and a certificate
16661666
authenticating that CA's public key hasn't been added to `cacerts`, then
16671667
you must import a certificate from that CA as a trusted certificate.

src/java.base/unix/classes/sun/net/PortConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -54,7 +54,7 @@ private PortConfig() {}
5454
break;
5555
case AIX:
5656
// The ephemeral port is OS version dependent on AIX:
57-
// http://publib.boulder.ibm.com/infocenter/aix/v7r1/topic/com.ibm.aix.rsct315.admin/bl503_ephport.htm
57+
// https://www.ibm.com/support/pages/node/886227
5858
// However, on AIX 5.3 / 6.1 / 7.1 we always see the
5959
// settings below by using:
6060
// /usr/sbin/no -a | fgrep ephemeral

src/java.base/unix/native/libjava/ProcessEnvironment_md.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -37,8 +37,8 @@
3737
* The declaration is standardized as part of UNIX98, but there is
3838
* no standard (not even de-facto) header file where the
3939
* declaration is to be found. See:
40-
* http://www.opengroup.org/onlinepubs/009695399/functions/environ.html
41-
* http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_02.html
40+
* https://pubs.opengroup.org/onlinepubs/009695399/functions/environ.html
41+
* https://pubs.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_02.html
4242
*
4343
* "All identifiers in this volume of IEEE Std 1003.1-2001, except
4444
* environ, are defined in at least one of the headers" (!)

src/java.base/unix/native/libjava/ProcessImpl_md.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1995, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1995, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -106,7 +106,7 @@
106106
* Note that when using posix_spawn(3), we exec twice: first a tiny binary called
107107
* the jspawnhelper, then in the jspawnhelper we do the pre-exec work and exec a
108108
* second time, this time the target binary (similar to the "exec-twice-technique"
109-
* described in http://mail.openjdk.org/pipermail/core-libs-dev/2018-September/055333.html).
109+
* described in https://mail.openjdk.org/pipermail/core-libs-dev/2018-September/055333.html).
110110
*
111111
* This is a JDK-specific implementation detail which just happens to be
112112
* implemented for jdk.lang.Process.launchMechanism=POSIX_SPAWN.
@@ -200,8 +200,7 @@ setSIGCHLDHandler(JNIEnv *env)
200200
* non-standard-compliant, and we shouldn't rely on it.
201201
*
202202
* References:
203-
* http://www.opengroup.org/onlinepubs/7908799/xsh/exec.html
204-
* http://www.pasc.org/interps/unofficial/db/p1003.1/pasc-1003.1-132.html
203+
* https://pubs.opengroup.org/onlinepubs/7908799/xsh/exec.html
205204
*/
206205
struct sigaction sa;
207206
sa.sa_handler = SIG_DFL;

src/java.base/unix/native/libjava/childproc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -144,7 +144,7 @@ readFully(int fd, void *buf, size_t nbyte)
144144
buf = (void *) (((char *)buf) + n);
145145
} else if (errno == EINTR) {
146146
/* Strange signals like SIGJVM1 are possible at any time.
147-
* See http://www.dreamsongs.com/WorseIsBetter.html */
147+
* See https://dreamsongs.com/WorseIsBetter.html */
148148
} else {
149149
return -1;
150150
}

src/java.base/unix/native/libjava/childproc.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -37,8 +37,8 @@
3737
* The declaration is standardized as part of UNIX98, but there is
3838
* no standard (not even de-facto) header file where the
3939
* declaration is to be found. See:
40-
* http://www.opengroup.org/onlinepubs/009695399/functions/environ.html
41-
* http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_02.html
40+
* https://pubs.opengroup.org/onlinepubs/009695399/functions/environ.html
41+
* https://pubs.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_02.html
4242
*
4343
* "All identifiers in this volume of IEEE Std 1003.1-2001, except
4444
* environ, are defined in at least one of the headers" (!)

0 commit comments

Comments
 (0)