pgsql: Rename cryptohashes.c to cryptohashfuncs.c

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Rename cryptohashes.c to cryptohashfuncs.c
Date: 2020-12-04 04:00:12
Message-ID: E1kl2GS-0007Oh-Et@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Rename cryptohashes.c to cryptohashfuncs.c

87ae969 has created two new files called cryptohash{_openssl}.c in
src/common/, whose names overlap with the existing backend file called
cryptohashes.c dedicated to the SQL wrappers for SHA2 and MD5. This
file is renamed to cryptohashfuncs.c to be more consistent with the
surroundings and reduce the confusion with the new cryptohash interface
of src/common/.

Author: Michael Paquier
Reviewed-by: Daniel Gustafsson
Discussion: https://postgr.es/m/X8hHhaQgbMbW+aGU@paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/bd94a9c04e04bb3b626e88981a50fcca2bd99d60

Modified Files
--------------
src/backend/utils/adt/Makefile | 2 +-
src/backend/utils/adt/{cryptohashes.c => cryptohashfuncs.c} | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Amit Kapila 2020-12-04 08:33:10 pgsql: Remove incorrect assertion in reorderbuffer.c.
Previous Message Michael Paquier 2020-12-04 01:53:11 pgsql: Change SHA2 implementation based on OpenSSL to use EVP digest ro