aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2017-03-07 15:22:52 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2017-03-07 15:24:27 +0200
commit55acfcbffd7d11db8c10cd94ba44bfe5974894e0 (patch)
tree7f98860bd81f56499a89e2315b122f026863893e
parent5ee2197767f648bc21e324e751b84d42af573b43 (diff)
downloadpostgresql-55acfcbffd7d11db8c10cd94ba44bfe5974894e0.tar.gz
postgresql-55acfcbffd7d11db8c10cd94ba44bfe5974894e0.zip
Fix comments in SCRAM-SHA-256 patch.
Amit Kapila.
-rw-r--r--src/backend/libpq/auth-scram.c2
-rw-r--r--src/common/base64.c2
-rw-r--r--src/common/scram-common.c2
-rw-r--r--src/include/common/base64.h2
-rw-r--r--src/include/common/scram-common.h4
-rw-r--r--src/include/libpq/scram.h2
-rw-r--r--src/interfaces/libpq/fe-auth-scram.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/src/backend/libpq/auth-scram.c b/src/backend/libpq/auth-scram.c
index cc4e84403f9..9f78e57aae5 100644
--- a/src/backend/libpq/auth-scram.c
+++ b/src/backend/libpq/auth-scram.c
@@ -37,7 +37,7 @@
* to the encoding being used, whatever that is. We cannot avoid that in
* general, after logging in, but let's do what we can here.
*
- * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/backend/libpq/auth-scram.c
diff --git a/src/common/base64.c b/src/common/base64.c
index 96406b191d2..e8e28ecca4b 100644
--- a/src/common/base64.c
+++ b/src/common/base64.c
@@ -3,7 +3,7 @@
* base64.c
* Encoding and decoding routines for base64 without whitespace.
*
- * Copyright (c) 2001-2016, PostgreSQL Global Development Group
+ * Copyright (c) 2001-2017, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/common/scram-common.c b/src/common/scram-common.c
index 4a1c3809cfe..0a36daec246 100644
--- a/src/common/scram-common.c
+++ b/src/common/scram-common.c
@@ -6,7 +6,7 @@
* backend, for implement the Salted Challenge Response Authentication
* Mechanism (SCRAM), per IETF's RFC 5802.
*
- * Portions Copyright (c) 2016, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2017, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/common/scram-common.c
diff --git a/src/include/common/base64.h b/src/include/common/base64.h
index 47c28c3b62f..09b69b1656a 100644
--- a/src/include/common/base64.h
+++ b/src/include/common/base64.h
@@ -3,7 +3,7 @@
* Encoding and decoding routines for base64 without whitespace
* support.
*
- * Portions Copyright (c) 2001-2016, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2001-2017, PostgreSQL Global Development Group
*
* src/include/common/base64.h
*/
diff --git a/src/include/common/scram-common.h b/src/include/common/scram-common.h
index 14bb0538321..7c98cc74d67 100644
--- a/src/include/common/scram-common.h
+++ b/src/include/common/scram-common.h
@@ -3,10 +3,10 @@
* scram-common.h
* Declarations for helper functions used for SCRAM authentication
*
- * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * src/include/common/relpath.h
+ * src/include/common/scram-common.h
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/libpq/scram.h b/src/include/libpq/scram.h
index 563462fb1cc..78a52db6841 100644
--- a/src/include/libpq/scram.h
+++ b/src/include/libpq/scram.h
@@ -3,7 +3,7 @@
* scram.h
* Interface to libpq/scram.c
*
- * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/libpq/scram.h
diff --git a/src/interfaces/libpq/fe-auth-scram.c b/src/interfaces/libpq/fe-auth-scram.c
index 14331f8d618..a7bb30a141c 100644
--- a/src/interfaces/libpq/fe-auth-scram.c
+++ b/src/interfaces/libpq/fe-auth-scram.c
@@ -3,7 +3,7 @@
* fe-auth-scram.c
* The front-end (client) implementation of SCRAM authentication.
*
- * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION