mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix $-style format string in ipa_ldap_init (util/ipa_ldap.c)
The second argument was not used, but the first one was used twice. Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
committed by
Rob Crittenden
parent
d9b8fa3fd8
commit
f3faecbbb4
@@ -39,7 +39,7 @@ int ipa_ldap_init(LDAP **ld, const char *ldap_uri)
|
|||||||
if (ret != LDAP_SUCCESS) {
|
if (ret != LDAP_SUCCESS) {
|
||||||
fprintf(
|
fprintf(
|
||||||
stderr,
|
stderr,
|
||||||
_("Unable to initialize connection to ldap server %1$s: %1$s\n"),
|
_("Unable to initialize connection to ldap server %1$s: %2$s\n"),
|
||||||
ldap_uri,
|
ldap_uri,
|
||||||
ldap_err2string(ret)
|
ldap_err2string(ret)
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user