summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY2
-rw-r--r--README2
-rw-r--r--README.git2
-rw-r--r--src/bin/psql/copy.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/HISTORY b/HISTORY
index 18d7b1b724..b87be55abf 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,5 +1,5 @@
Release notes for all versions of PostgreSQL can be found on-line at
-https://www.postgresql.org/docs/current/static/release.html
+https://www.postgresql.org/docs/current/release.html
Distribution file sets include release notes for their version and preceding
versions. Visit the file doc/src/sgml/html/release.html in an HTML browser.
diff --git a/README b/README
index 12de3f1d73..6416a8cf3b 100644
--- a/README
+++ b/README
@@ -11,7 +11,7 @@ and functions. This distribution also contains C language bindings.
PostgreSQL has many language interfaces, many of which are listed here:
- https://www.postgresql.org/download
+ https://www.postgresql.org/download/
See the file INSTALL for instructions on how to build and install
PostgreSQL. That file also lists supported operating systems and
diff --git a/README.git b/README.git
index 52cb7223df..4bf614eea4 100644
--- a/README.git
+++ b/README.git
@@ -6,7 +6,7 @@ git and so will not be present if you are using a git checkout.
If you are using a git checkout, you can view the most recent installation
instructions at:
- https://www.postgresql.org/docs/devel/static/installation.html
+ https://www.postgresql.org/docs/devel/installation.html
Users compiling from git will also need compatible versions of Bison, Flex,
and Perl, as discussed in the install documentation. These programs are not
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c
index 28ce99122d..f59db8d7bd 100644
--- a/src/bin/psql/copy.c
+++ b/src/bin/psql/copy.c
@@ -628,7 +628,7 @@ handleCopyIn(PGconn *conn, FILE *copystream, bool isbinary, PGresult **res)
/*
* This code erroneously assumes '\.' on a line alone
* inside a quoted CSV string terminates the \copy.
- * http://www.postgresql.org/message-id/E1TdNVQ-0001ju-GO@wrigleys.postgresql.org
+ * https://www.postgresql.org/message-id/E1TdNVQ-0001ju-GO@wrigleys.postgresql.org
*/
if (strcmp(buf, "\\.\n") == 0 ||
strcmp(buf, "\\.\r\n") == 0)