mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
Fix incorrect comments in hmac.c and hmac_openssl.c
Both files referred to pg_hmac_ctx->data, which, I guess, comes from the
early versions of the patch that has resulted in commit e6bdfd9
.
Author: Sergey Shinderuk
Discussion: https://postgr.es/m/8cbb56dd-63d6-a581-7a65-25a97ac4be03@postgrespro.ru
Backpatch-through: 14
This commit is contained in:
parent
db6736c93c
commit
87f29f4fcc
@ -38,9 +38,7 @@
|
||||
#define FREE(ptr) free(ptr)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Internal structure for pg_hmac_ctx->data with this implementation.
|
||||
*/
|
||||
/* Internal pg_hmac_ctx structure */
|
||||
struct pg_hmac_ctx
|
||||
{
|
||||
pg_cryptohash_ctx *hash;
|
||||
|
@ -50,9 +50,7 @@
|
||||
#define FREE(ptr) free(ptr)
|
||||
#endif /* FRONTEND */
|
||||
|
||||
/*
|
||||
* Internal structure for pg_hmac_ctx->data with this implementation.
|
||||
*/
|
||||
/* Internal pg_hmac_ctx structure */
|
||||
struct pg_hmac_ctx
|
||||
{
|
||||
HMAC_CTX *hmacctx;
|
||||
|
Loading…
Reference in New Issue
Block a user