summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2020-02-10 20:47:50 +0100
committerPeter Eisentraut <peter@eisentraut.org>2020-02-10 20:47:50 +0100
commit2102ba4b586350957bf95b371432583239000164 (patch)
tree01971e97ae8f365a52a90f51cd8a5598a3690419 /src
parent541757f34ee099dd8e601b29dfad6302c6747d71 (diff)
Canonicalize some URLs
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/copy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c
index 28ce99122d0..f59db8d7bd0 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)