summaryrefslogtreecommitdiff
path: root/src/port
diff options
context:
space:
mode:
authorBruce Momjian2025-01-01 16:21:55 +0000
committerBruce Momjian2025-01-01 16:21:55 +0000
commit50e6eb731d98ab6d0e625a0b87fb327b172bbebd (patch)
treeafa997a1b8df3ed53e220af8374e637cd5de5c5a /src/port
parent98b1efd6ef6a1612019ef9ed6e44b79c132352ce (diff)
Update copyright for 2025
Backpatch-through: 13
Diffstat (limited to 'src/port')
-rw-r--r--src/port/bsearch_arg.c2
-rw-r--r--src/port/chklocale.c2
-rw-r--r--src/port/dirent.c2
-rw-r--r--src/port/dirmod.c2
-rw-r--r--src/port/explicit_bzero.c2
-rw-r--r--src/port/getpeereid.c2
-rw-r--r--src/port/kill.c2
-rw-r--r--src/port/meson.build2
-rw-r--r--src/port/mkdtemp.c2
-rw-r--r--src/port/noblock.c2
-rw-r--r--src/port/open.c2
-rw-r--r--src/port/path.c2
-rw-r--r--src/port/pg_bitutils.c2
-rw-r--r--src/port/pg_crc32c_armv8.c2
-rw-r--r--src/port/pg_crc32c_armv8_choose.c2
-rw-r--r--src/port/pg_crc32c_loongarch.c2
-rw-r--r--src/port/pg_crc32c_sb8.c2
-rw-r--r--src/port/pg_crc32c_sse42.c2
-rw-r--r--src/port/pg_crc32c_sse42_choose.c2
-rw-r--r--src/port/pg_popcount_avx512.c2
-rw-r--r--src/port/pg_strong_random.c2
-rw-r--r--src/port/pgcheckdir.c2
-rw-r--r--src/port/pgsleep.c2
-rw-r--r--src/port/pgstrcasecmp.c2
-rw-r--r--src/port/pgstrsignal.c2
-rw-r--r--src/port/pqsignal.c2
-rw-r--r--src/port/pthread_barrier_wait.c2
-rw-r--r--src/port/quotes.c2
-rw-r--r--src/port/snprintf.c2
-rw-r--r--src/port/strerror.c2
-rw-r--r--src/port/strlcpy.c2
-rw-r--r--src/port/strnlen.c2
-rw-r--r--src/port/strtof.c2
-rw-r--r--src/port/system.c2
-rw-r--r--src/port/win32common.c2
-rw-r--r--src/port/win32dlopen.c2
-rw-r--r--src/port/win32env.c2
-rw-r--r--src/port/win32error.c2
-rw-r--r--src/port/win32fdatasync.c2
-rw-r--r--src/port/win32fseek.c2
-rw-r--r--src/port/win32gai_strerror.c2
-rw-r--r--src/port/win32getrusage.c2
-rw-r--r--src/port/win32link.c2
-rw-r--r--src/port/win32ntdll.c2
-rw-r--r--src/port/win32pread.c2
-rw-r--r--src/port/win32pwrite.c2
-rw-r--r--src/port/win32security.c2
-rw-r--r--src/port/win32setlocale.c2
-rw-r--r--src/port/win32stat.c2
-rw-r--r--src/port/win32ver.rc2
50 files changed, 50 insertions, 50 deletions
diff --git a/src/port/bsearch_arg.c b/src/port/bsearch_arg.c
index e0446a9f075..e9798aa8ee6 100644
--- a/src/port/bsearch_arg.c
+++ b/src/port/bsearch_arg.c
@@ -1,7 +1,7 @@
/*
* bsearch_arg.c: bsearch variant with a user-supplied pointer
*
- * Copyright (c) 2021-2024, PostgreSQL Global Development Group
+ * Copyright (c) 2021-2025, PostgreSQL Global Development Group
* Copyright (c) 1990 Regents of the University of California.
* All rights reserved.
*
diff --git a/src/port/chklocale.c b/src/port/chklocale.c
index afdbd9c875b..034939f7fd2 100644
--- a/src/port/chklocale.c
+++ b/src/port/chklocale.c
@@ -4,7 +4,7 @@
* Functions for handling locale-related info
*
*
- * Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/dirent.c b/src/port/dirent.c
index 1f47ea65756..a10484ea32c 100644
--- a/src/port/dirent.c
+++ b/src/port/dirent.c
@@ -3,7 +3,7 @@
* dirent.c
* opendir/readdir/closedir for win32/msvc
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/dirmod.c b/src/port/dirmod.c
index f98d5a7bf28..c1187d249de 100644
--- a/src/port/dirmod.c
+++ b/src/port/dirmod.c
@@ -3,7 +3,7 @@
* dirmod.c
* directory handling functions
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* This includes replacement versions of functions that work on
diff --git a/src/port/explicit_bzero.c b/src/port/explicit_bzero.c
index 735e21c8b36..1d37b119bab 100644
--- a/src/port/explicit_bzero.c
+++ b/src/port/explicit_bzero.c
@@ -2,7 +2,7 @@
*
* explicit_bzero.c
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/getpeereid.c b/src/port/getpeereid.c
index f1fef916317..345478599a0 100644
--- a/src/port/getpeereid.c
+++ b/src/port/getpeereid.c
@@ -3,7 +3,7 @@
* getpeereid.c
* get peer userid for UNIX-domain socket connection
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/kill.c b/src/port/kill.c
index 412c2f19c15..72fac20d507 100644
--- a/src/port/kill.c
+++ b/src/port/kill.c
@@ -3,7 +3,7 @@
* kill.c
* kill()
*
- * Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* This is a replacement version of kill for Win32 which sends
* signals that the backend can recognize.
diff --git a/src/port/meson.build b/src/port/meson.build
index 9c916d8521d..7fcfa728d43 100644
--- a/src/port/meson.build
+++ b/src/port/meson.build
@@ -1,4 +1,4 @@
-# Copyright (c) 2022-2024, PostgreSQL Global Development Group
+# Copyright (c) 2022-2025, PostgreSQL Global Development Group
pgport_sources = [
'bsearch_arg.c',
diff --git a/src/port/mkdtemp.c b/src/port/mkdtemp.c
index 65ba193758b..027b95723fe 100644
--- a/src/port/mkdtemp.c
+++ b/src/port/mkdtemp.c
@@ -3,7 +3,7 @@
* mkdtemp.c
* create a mode-0700 temporary directory
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/noblock.c b/src/port/noblock.c
index 29a04bb000c..eee4d42d861 100644
--- a/src/port/noblock.c
+++ b/src/port/noblock.c
@@ -3,7 +3,7 @@
* noblock.c
* set a file descriptor as blocking or non-blocking
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
diff --git a/src/port/open.c b/src/port/open.c
index 13e49af8d4f..4a31c5d7b77 100644
--- a/src/port/open.c
+++ b/src/port/open.c
@@ -4,7 +4,7 @@
* Win32 open() replacement
*
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* src/port/open.c
*
diff --git a/src/port/path.c b/src/port/path.c
index de4df6cd78b..0788bff51d0 100644
--- a/src/port/path.c
+++ b/src/port/path.c
@@ -3,7 +3,7 @@
* path.c
* portable path handling routines
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_bitutils.c b/src/port/pg_bitutils.c
index c8399981ee0..5677525693d 100644
--- a/src/port/pg_bitutils.c
+++ b/src/port/pg_bitutils.c
@@ -3,7 +3,7 @@
* pg_bitutils.c
* Miscellaneous functions for bit-wise operations.
*
- * Copyright (c) 2019-2024, PostgreSQL Global Development Group
+ * Copyright (c) 2019-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/pg_bitutils.c
diff --git a/src/port/pg_crc32c_armv8.c b/src/port/pg_crc32c_armv8.c
index d47d838c50b..5ba070bb99d 100644
--- a/src/port/pg_crc32c_armv8.c
+++ b/src/port/pg_crc32c_armv8.c
@@ -3,7 +3,7 @@
* pg_crc32c_armv8.c
* Compute CRC-32C checksum using ARMv8 CRC Extension instructions
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_armv8_choose.c b/src/port/pg_crc32c_armv8_choose.c
index 45a52c77247..ec12be1bbc3 100644
--- a/src/port/pg_crc32c_armv8_choose.c
+++ b/src/port/pg_crc32c_armv8_choose.c
@@ -8,7 +8,7 @@
* computation. Otherwise, fall back to the pure software implementation
* (slicing-by-8).
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_loongarch.c b/src/port/pg_crc32c_loongarch.c
index 2004b840c8d..90679ce0d0c 100644
--- a/src/port/pg_crc32c_loongarch.c
+++ b/src/port/pg_crc32c_loongarch.c
@@ -3,7 +3,7 @@
* pg_crc32c_loongarch.c
* Compute CRC-32C checksum using LoongArch CRCC instructions
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_sb8.c b/src/port/pg_crc32c_sb8.c
index eda20fa747f..19659d186a0 100644
--- a/src/port/pg_crc32c_sb8.c
+++ b/src/port/pg_crc32c_sb8.c
@@ -8,7 +8,7 @@
* Generation", IEEE Transactions on Computers, vol.57, no. 11,
* pp. 1550-1560, November 2008, doi:10.1109/TC.2008.85
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_sse42.c b/src/port/pg_crc32c_sse42.c
index dcc4904a82b..22c2137df31 100644
--- a/src/port/pg_crc32c_sse42.c
+++ b/src/port/pg_crc32c_sse42.c
@@ -3,7 +3,7 @@
* pg_crc32c_sse42.c
* Compute CRC-32C checksum using Intel SSE 4.2 instructions.
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_sse42_choose.c b/src/port/pg_crc32c_sse42_choose.c
index 56d600f3a93..65dbc4d4249 100644
--- a/src/port/pg_crc32c_sse42_choose.c
+++ b/src/port/pg_crc32c_sse42_choose.c
@@ -8,7 +8,7 @@
* computation. Otherwise, fall back to the pure software implementation
* (slicing-by-8).
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_popcount_avx512.c b/src/port/pg_popcount_avx512.c
index c8a4f2b19fa..dac895a0fc2 100644
--- a/src/port/pg_popcount_avx512.c
+++ b/src/port/pg_popcount_avx512.c
@@ -3,7 +3,7 @@
* pg_popcount_avx512.c
* Holds the AVX-512 pg_popcount() implementation.
*
- * Copyright (c) 2024, PostgreSQL Global Development Group
+ * Copyright (c) 2024-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/pg_popcount_avx512.c
diff --git a/src/port/pg_strong_random.c b/src/port/pg_strong_random.c
index b5f0ea2fdc1..ea6780dcc9f 100644
--- a/src/port/pg_strong_random.c
+++ b/src/port/pg_strong_random.c
@@ -10,7 +10,7 @@
* therefore, even when built for backend, it cannot rely on backend
* infrastructure such as elog() or palloc().
*
- * Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/pg_strong_random.c
diff --git a/src/port/pgcheckdir.c b/src/port/pgcheckdir.c
index 8fa347b4e0e..83330516107 100644
--- a/src/port/pgcheckdir.c
+++ b/src/port/pgcheckdir.c
@@ -5,7 +5,7 @@
* A simple subroutine to check whether a directory exists and is empty or not.
* Useful in both initdb and the backend.
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
diff --git a/src/port/pgsleep.c b/src/port/pgsleep.c
index 1284458bfce..dfe824fe462 100644
--- a/src/port/pgsleep.c
+++ b/src/port/pgsleep.c
@@ -4,7 +4,7 @@
* Portable delay handling.
*
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* src/port/pgsleep.c
*
diff --git a/src/port/pgstrcasecmp.c b/src/port/pgstrcasecmp.c
index 60b3137e45a..ec2b3a75c3d 100644
--- a/src/port/pgstrcasecmp.c
+++ b/src/port/pgstrcasecmp.c
@@ -18,7 +18,7 @@
* C library thinks the locale is.
*
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* src/port/pgstrcasecmp.c
*
diff --git a/src/port/pgstrsignal.c b/src/port/pgstrsignal.c
index bd4add8249f..4e6bb878dbc 100644
--- a/src/port/pgstrsignal.c
+++ b/src/port/pgstrsignal.c
@@ -6,7 +6,7 @@
* On platforms compliant with modern POSIX, this just wraps strsignal(3).
* Elsewhere, we do the best we can.
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
diff --git a/src/port/pqsignal.c b/src/port/pqsignal.c
index bdaa9f10c8a..d328a27279d 100644
--- a/src/port/pqsignal.c
+++ b/src/port/pqsignal.c
@@ -4,7 +4,7 @@
* reliable BSD-style signal(2) routine stolen from RWW who stole it
* from Stevens...
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pthread_barrier_wait.c b/src/port/pthread_barrier_wait.c
index 835dbf1c7af..2387a2acb24 100644
--- a/src/port/pthread_barrier_wait.c
+++ b/src/port/pthread_barrier_wait.c
@@ -3,7 +3,7 @@
* pthread_barrier_wait.c
* Implementation of pthread_barrier_t support for platforms lacking it.
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/pthread_barrier_wait.c
diff --git a/src/port/quotes.c b/src/port/quotes.c
index e75dfa59240..3d3884036b8 100644
--- a/src/port/quotes.c
+++ b/src/port/quotes.c
@@ -3,7 +3,7 @@
* quotes.c
* string quoting and escaping functions
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/snprintf.c b/src/port/snprintf.c
index d83f81ade3f..f8f2018ea0c 100644
--- a/src/port/snprintf.c
+++ b/src/port/snprintf.c
@@ -2,7 +2,7 @@
* Copyright (c) 1983, 1995, 1996 Eric P. Allman
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/src/port/strerror.c b/src/port/strerror.c
index 4918ba821c1..f0746517770 100644
--- a/src/port/strerror.c
+++ b/src/port/strerror.c
@@ -3,7 +3,7 @@
* strerror.c
* Replacements for standard strerror() and strerror_r() functions
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/strlcpy.c b/src/port/strlcpy.c
index 268c91de8f2..d07b6536adb 100644
--- a/src/port/strlcpy.c
+++ b/src/port/strlcpy.c
@@ -3,7 +3,7 @@
* strlcpy.c
* strncpy done right
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/strnlen.c b/src/port/strnlen.c
index f635f03e3be..60c3b458c6b 100644
--- a/src/port/strnlen.c
+++ b/src/port/strnlen.c
@@ -4,7 +4,7 @@
* Fallback implementation of strnlen().
*
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
diff --git a/src/port/strtof.c b/src/port/strtof.c
index b93bafd1dfa..37dad9ebbc8 100644
--- a/src/port/strtof.c
+++ b/src/port/strtof.c
@@ -2,7 +2,7 @@
*
* strtof.c
*
- * Portions Copyright (c) 2019-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2019-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/system.c b/src/port/system.c
index 6877c4edd84..a55946e0563 100644
--- a/src/port/system.c
+++ b/src/port/system.c
@@ -29,7 +29,7 @@
* quote character on the command line, preserving any text after the last
* quote character.
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* src/port/system.c
*
diff --git a/src/port/win32common.c b/src/port/win32common.c
index dc83396236d..d43d5d5324f 100644
--- a/src/port/win32common.c
+++ b/src/port/win32common.c
@@ -3,7 +3,7 @@
* win32common.c
* Common routines shared among the win32*.c ports.
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32dlopen.c b/src/port/win32dlopen.c
index 11823bbae0f..cc348465969 100644
--- a/src/port/win32dlopen.c
+++ b/src/port/win32dlopen.c
@@ -3,7 +3,7 @@
* win32dlopen.c
* dynamic loader for Windows
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32env.c b/src/port/win32env.c
index fdc5537fb4e..b22fbafde40 100644
--- a/src/port/win32env.c
+++ b/src/port/win32env.c
@@ -6,7 +6,7 @@
* These functions update both the process environment and caches in
* (potentially multiple) C run-time library (CRT) versions.
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32error.c b/src/port/win32error.c
index a7cd6fb4e02..7ea99738bdb 100644
--- a/src/port/win32error.c
+++ b/src/port/win32error.c
@@ -3,7 +3,7 @@
* win32error.c
* Map win32 error codes to errno values
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32error.c
diff --git a/src/port/win32fdatasync.c b/src/port/win32fdatasync.c
index 1cf9c159551..66d75977013 100644
--- a/src/port/win32fdatasync.c
+++ b/src/port/win32fdatasync.c
@@ -4,7 +4,7 @@
* Win32 fdatasync() replacement
*
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* src/port/win32fdatasync.c
*
diff --git a/src/port/win32fseek.c b/src/port/win32fseek.c
index 9ae3653e812..a75e488ce21 100644
--- a/src/port/win32fseek.c
+++ b/src/port/win32fseek.c
@@ -3,7 +3,7 @@
* win32fseek.c
* Replacements for fseeko() and ftello().
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32fseek.c
diff --git a/src/port/win32gai_strerror.c b/src/port/win32gai_strerror.c
index 5b47d1722df..d52e9a1ef37 100644
--- a/src/port/win32gai_strerror.c
+++ b/src/port/win32gai_strerror.c
@@ -3,7 +3,7 @@
* win32gai_strerror.c
* Thread-safe gai_strerror() for Windows.
*
- * Portions Copyright (c) 2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2024-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32gai_strerror.c
diff --git a/src/port/win32getrusage.c b/src/port/win32getrusage.c
index a2cf1828fb9..6a197c94376 100644
--- a/src/port/win32getrusage.c
+++ b/src/port/win32getrusage.c
@@ -3,7 +3,7 @@
* win32getrusage.c
* get information about resource utilisation
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32link.c b/src/port/win32link.c
index b9fe89eb6cd..ee4d6c96c99 100644
--- a/src/port/win32link.c
+++ b/src/port/win32link.c
@@ -2,7 +2,7 @@
*
* win32link.c
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32ntdll.c b/src/port/win32ntdll.c
index bf8bce7f1a1..ab6820fb8e5 100644
--- a/src/port/win32ntdll.c
+++ b/src/port/win32ntdll.c
@@ -3,7 +3,7 @@
* win32ntdll.c
* Dynamically loaded Windows NT functions.
*
- * Portions Copyright (c) 2021-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2021-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32pread.c b/src/port/win32pread.c
index 2d022e6d378..32d56c462ec 100644
--- a/src/port/win32pread.c
+++ b/src/port/win32pread.c
@@ -3,7 +3,7 @@
* win32pread.c
* Implementation of pread(2) for Windows.
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32pread.c
diff --git a/src/port/win32pwrite.c b/src/port/win32pwrite.c
index b37bb2f92e0..249aa6c4685 100644
--- a/src/port/win32pwrite.c
+++ b/src/port/win32pwrite.c
@@ -3,7 +3,7 @@
* win32pwrite.c
* Implementation of pwrite(2) for Windows.
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32pwrite.c
diff --git a/src/port/win32security.c b/src/port/win32security.c
index bca62ab2fba..a46b82dd048 100644
--- a/src/port/win32security.c
+++ b/src/port/win32security.c
@@ -3,7 +3,7 @@
* win32security.c
* Microsoft Windows Win32 Security Support Functions
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32security.c
diff --git a/src/port/win32setlocale.c b/src/port/win32setlocale.c
index 9e2ab8cc3ad..7c0982439db 100644
--- a/src/port/win32setlocale.c
+++ b/src/port/win32setlocale.c
@@ -3,7 +3,7 @@
* win32setlocale.c
* Wrapper to work around bugs in Windows setlocale() implementation
*
- * Copyright (c) 2011-2024, PostgreSQL Global Development Group
+ * Copyright (c) 2011-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32setlocale.c
diff --git a/src/port/win32stat.c b/src/port/win32stat.c
index 7ab35024af3..d9bad97b113 100644
--- a/src/port/win32stat.c
+++ b/src/port/win32stat.c
@@ -3,7 +3,7 @@
* win32stat.c
* Replacements for <sys/stat.h> functions using GetFileInformationByHandle
*
- * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32ver.rc b/src/port/win32ver.rc
index 31f8fc2e5d9..e62020e72a1 100644
--- a/src/port/win32ver.rc
+++ b/src/port/win32ver.rc
@@ -20,7 +20,7 @@ BEGIN
VALUE "FileDescription", FILEDESC
VALUE "FileVersion", PG_VERSION
VALUE "InternalName", _INTERNAL_NAME_
- VALUE "LegalCopyright", "Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group. Portions Copyright (c) 1994, Regents of the University of California."
+ VALUE "LegalCopyright", "Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group. Portions Copyright (c) 1994, Regents of the University of California."
VALUE "OriginalFileName", _ORIGINAL_NAME_
VALUE "ProductName", "PostgreSQL"
VALUE "ProductVersion", PG_VERSION