Skip to content

Commit bd94a9c

Browse files
committed
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
1 parent 4f48a6f commit bd94a9c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/backend/utils/adt/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ OBJS = \
2222
bool.o \
2323
cash.o \
2424
char.o \
25-
cryptohashes.o \
25+
cryptohashfuncs.o \
2626
date.o \
2727
datetime.o \
2828
datum.o \

src/backend/utils/adt/cryptohashes.c renamed to src/backend/utils/adt/cryptohashfuncs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* cryptohashes.c
3+
* cryptohashfuncs.c
44
* Cryptographic hash functions
55
*
66
* Portions Copyright (c) 2018-2020, PostgreSQL Global Development Group
77
*
88
*
99
* IDENTIFICATION
10-
* src/backend/utils/adt/cryptohashes.c
10+
* src/backend/utils/adt/cryptohashfuncs.c
1111
*
1212
*-------------------------------------------------------------------------
1313
*/

0 commit comments

Comments
 (0)