summaryrefslogtreecommitdiffstats
path: root/dirmngr/ks-engine-ldap.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2021-06-04 07:49:00 +0200
committerWerner Koch <wk@gnupg.org>2021-06-16 12:47:04 +0200
commitbcb99315627ec38aa5c9fe097075a82bdc8a2043 (patch)
treedcb6c428d386755c00293a6726053ea5561c5c28 /dirmngr/ks-engine-ldap.c
parentdoc: Update description of LDAP keyservers (diff)
downloadgnupg2-bcb99315627ec38aa5c9fe097075a82bdc8a2043.tar.xz
gnupg2-bcb99315627ec38aa5c9fe097075a82bdc8a2043.zip
dirmngr: Remove useless code.
* dirmngr/ks-engine-ldap.c (my_ldap_connect): Remove the password_param thing because we set the password directly without an intermediate var. -- Reported-by: Ingo Kloecker (cherry picked from commit 8bd5172539e1399b407aa2a9d56fa51b8e040ae3)
Diffstat (limited to '')
-rw-r--r--dirmngr/ks-engine-ldap.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/dirmngr/ks-engine-ldap.c b/dirmngr/ks-engine-ldap.c
index 72da786fc..22700efd5 100644
--- a/dirmngr/ks-engine-ldap.c
+++ b/dirmngr/ks-engine-ldap.c
@@ -543,11 +543,6 @@ my_ldap_connect (parsed_uri_t uri, LDAP **ldap_connp,
}
else
{
- struct uri_tuple_s *password_param;
-
- password_param = uri_query_lookup (uri, "password");
- password = password_param ? password_param->value : NULL;
-
host = uri->host;
port = uri->port;
bindname = uri->auth;