mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
fix (temporarily) uninit'ed var
This commit is contained in:
parent
242274d038
commit
107036a946
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ ldap_back_db_open( BackendDB *be )
|
|||
ldapinfo_t *li = (ldapinfo_t *)be->be_private;
|
||||
|
||||
slap_bindconf sb = { 0 };
|
||||
int rc;
|
||||
int rc = 0;
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"ldap_back_db_open: URI=%s\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue