1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-25 01:02:05 +03:00

Fix bugs in OpenSSL hook renaming.

libpq's exports.txt was overlooked in commit 36d108761, which the
buildfarm is quite unhappy about.

Also, I'd gathered that the plan included renaming PQgetSSLKeyPassHook
to PQgetSSLKeyPassHook_OpenSSL, but that didn't happen in the patch
as committed.  I'm taking it on my own authority to do so now, since
the window before beta1 is closing fast.
This commit is contained in:
Tom Lane
2020-05-16 19:44:49 -04:00
parent 36d1087611
commit e78b930945
4 changed files with 12 additions and 11 deletions

View File

@ -1687,7 +1687,7 @@ PQdefaultSSLKeyPassHook_OpenSSL(char *buf, int size, PGconn *conn)
}
PQsslKeyPassHook_OpenSSL_type
PQgetSSLKeyPassHook(void)
PQgetSSLKeyPassHook_OpenSSL(void)
{
return PQsslKeyPassHook;
}