From 71fbc51aa0092a71cbbfb8b2c16e6db9d6808d57 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Sun, 24 Jul 2016 13:23:58 +0200 Subject: [PATCH] openldap plugin: rc is only used once --- src/openldap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/openldap.c b/src/openldap.c index 615aee33..151d25d7 100644 --- a/src/openldap.c +++ b/src/openldap.c @@ -624,9 +624,8 @@ static int cldap_config_add (oconfig_item_t *ci) /* {{{ */ if ((status == 0) && (st->url != NULL)) { LDAPURLDesc *ludpp; - int rc; - if ((rc = ldap_url_parse (st->url, &ludpp)) != 0) + if (ldap_url_parse (st->url, &ludpp) != 0) { ERROR ("openldap plugin: Instance `%s': " "Invalid URL: `%s'", -- 2.11.0