commit b6d5a0d4d64ecfba7320cbdc6628ecd358574495
parent 3ee4ef03fb9dd34bce43025a642d49d71cdcbe15
Author: wwp <wwp@free.fr>
Date: Thu, 16 Aug 2018 08:37:13 +0200
Sucesfuly fix typos in LDAP log prints.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/ldaputil.c b/src/ldaputil.c
@@ -78,7 +78,7 @@ static GList *ldaputil_test_v3( LDAP *ld, gint tov, gint *errcode ) {
attribs, 0, NULL, NULL, &timeout, 0, &result );
if( rc == LDAP_SUCCESS ) {
- log_print(LOG_PROTOCOL, _("LDAP (search): succesful\n"));
+ log_print(LOG_PROTOCOL, _("LDAP (search): successful\n"));
/* Process entries */
for( e = ldap_first_entry( ld, result );
e != NULL;
@@ -153,7 +153,7 @@ static GList *ldaputil_test_v2( LDAP *ld, gint tov ) {
attribs, 0, NULL, NULL, &timeout, 0, &result );
if( rc == LDAP_SUCCESS ) {
- log_print(LOG_PROTOCOL, _("LDAP (search): succesful\n"));
+ log_print(LOG_PROTOCOL, _("LDAP (search): successful\n"));
/* Process entries */
for( e = ldap_first_entry( ld, result );
e != NULL;