]> granicus.if.org Git - postgresql/commitdiff
Fix comments in SCRAM-SHA-256 patch.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 7 Mar 2017 13:22:52 +0000 (15:22 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 7 Mar 2017 13:24:27 +0000 (15:24 +0200)
Amit Kapila.

src/backend/libpq/auth-scram.c
src/common/base64.c
src/common/scram-common.c
src/include/common/base64.h
src/include/common/scram-common.h
src/include/libpq/scram.h
src/interfaces/libpq/fe-auth-scram.c

index cc4e84403f9abd6baf64754d05ec4ea8b2e8430b..9f78e57aae5102c33c9d8637eb827b39881e9de8 100644 (file)
@@ -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
index 96406b191d21cc50595df0d515f8d786499e3de5..e8e28ecca4b26c746910c45202c6c8338a2aaded 100644 (file)
@@ -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
index 4a1c3809cfeac91989fc18e11434cb5232601038..0a36daec2460d366215ef30b7b0d363059ffa846 100644 (file)
@@ -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
index 47c28c3b62f8f44a95b3f47b8025dac57e08a714..09b69b1656a671fd2a058bf96756f6d453101d91 100644 (file)
@@ -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
  */
index 14bb053832149534d0fcad3f8e52b105724c9750..7c98cc74d67b8f054169896660a703b48545f83a 100644 (file)
@@ -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
  *
  *-------------------------------------------------------------------------
  */
index 563462fb1cc502b3c695202f91fd3ff499f5936c..78a52db6841ed1cf6becbd4bc6b0a26311f26921 100644 (file)
@@ -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
index 14331f8d6189fba595bb74a86e2d5762a9de8b7c..a7bb30a141c5317138f9d632a620272a98b3045d 100644 (file)
@@ -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