From 39c6d2a4f5a03e0cf643fbd594785ef6856c8313 Mon Sep 17 00:00:00 2001 From: Thomas Woerner Date: Jul 31 2018 11:46:14 +0000 Subject: 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 --- diff --git a/util/ipa_ldap.c b/util/ipa_ldap.c index 789ea0d..859eaf1 100644 --- a/util/ipa_ldap.c +++ b/util/ipa_ldap.c @@ -39,7 +39,7 @@ int ipa_ldap_init(LDAP **ld, const char *ldap_uri) if (ret != LDAP_SUCCESS) { fprintf( 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_err2string(ret) );