diff options
author | NIIBE Yutaka <[email protected]> | 2022-09-29 00:53:13 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2022-09-29 00:53:13 +0000 |
commit | 530d709607e54465ce47c1fc7d2554ea3b0bea6b (patch) | |
tree | 83042bb76bf2c5cd26cd5b5c514aea665dbe95af /dirmngr | |
parent | dirmngr: Change interrogate_ldap_dn for better memory semantics. (diff) | |
download | gnupg-530d709607e54465ce47c1fc7d2554ea3b0bea6b.tar.gz gnupg-530d709607e54465ce47c1fc7d2554ea3b0bea6b.zip |
dirnmgr: Fix the function prototype.
* dirmngr/ldap-wrapper.c (ldap_wrapper_wait_connections): It's with
no arguments.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'dirmngr')
-rw-r--r-- | dirmngr/ldap-wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dirmngr/ldap-wrapper.c b/dirmngr/ldap-wrapper.c index 446e54317..ac29de973 100644 --- a/dirmngr/ldap-wrapper.c +++ b/dirmngr/ldap-wrapper.c @@ -571,7 +571,7 @@ ldap_reaper_launch_thread (void) /* Wait until all ldap wrappers have terminated. We assume that the kill has already been sent to all of them. */ void -ldap_wrapper_wait_connections () +ldap_wrapper_wait_connections (void) { lock_reaper_list (); { |