diff options
| author | Michael Paquier | 2024-12-23 05:46:49 +0000 |
|---|---|---|
| committer | Michael Paquier | 2024-12-23 05:46:49 +0000 |
| commit | 7f97b4734f937db6f8dab1bbf8bbaab349e6c9b1 (patch) | |
| tree | 3827f44eae03b923f80f297e3d5c5efa442fbc45 /contrib/passwordcheck | |
| parent | 578a7fe7b6f8484f6d7caa2fda288abb3fe87aa0 (diff) | |
Fix some comments related to library unloading
Library unloading has never been supported with its code removed in
ab02d702ef08, and there were some comments still mentioning that it was
a possible operation.
ChangAo has noticed the incorrect references in dfmgr.c, while I have
noticed the other ones while scanning the rest of the tree for similar
mistakes.
Author: ChangAo Chen, Michael Paquier
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/tencent_1D09840A1632D406A610C8C4E2491D74DB0A@qq.com
Diffstat (limited to 'contrib/passwordcheck')
| -rw-r--r-- | contrib/passwordcheck/passwordcheck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/passwordcheck/passwordcheck.c b/contrib/passwordcheck/passwordcheck.c index 0785618f2ab..b5d95b558e9 100644 --- a/contrib/passwordcheck/passwordcheck.c +++ b/contrib/passwordcheck/passwordcheck.c @@ -26,7 +26,7 @@ PG_MODULE_MAGIC; -/* Saved hook value in case of unload */ +/* Saved hook value */ static check_password_hook_type prev_check_password_hook = NULL; /* passwords shorter than this will be rejected */ |
