diff options
author | Michael Paquier | 2019-07-31 01:18:29 +0000 |
---|---|---|
committer | Michael Paquier | 2019-07-31 01:18:29 +0000 |
commit | 652a8947d981db0367bcff5b123545eba0049878 (patch) | |
tree | 3b4efb5668e2446820fc3abaaaacc5a658b54c66 /contrib/pgcrypto/pgp.c | |
parent | a29834beb1deeb0aa06742dd77ba1d21b444ca44 (diff) |
Remove orphaned structure member in pgcrypto
int_name has never been used for digest lookups since its introduction
in e94dd6a.
Author: Daniel Gustafsson
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'contrib/pgcrypto/pgp.c')
-rw-r--r-- | contrib/pgcrypto/pgp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/pgcrypto/pgp.c b/contrib/pgcrypto/pgp.c index 0800fc325d1..dd8dae1b845 100644 --- a/contrib/pgcrypto/pgp.c +++ b/contrib/pgcrypto/pgp.c @@ -54,7 +54,6 @@ struct digest_info { const char *name; int code; - const char *int_name; }; struct cipher_info |