From 55acfcbffd7d11db8c10cd94ba44bfe5974894e0 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Tue, 7 Mar 2017 15:22:52 +0200 Subject: [PATCH] Fix comments in SCRAM-SHA-256 patch. Amit Kapila. --- src/backend/libpq/auth-scram.c | 2 +- src/common/base64.c | 2 +- src/common/scram-common.c | 2 +- src/include/common/base64.h | 2 +- src/include/common/scram-common.h | 4 ++-- src/include/libpq/scram.h | 2 +- src/interfaces/libpq/fe-auth-scram.c | 2 +- 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 -- 2.30.2