Skip to content
Snippets Groups Projects
Commit 97683ac5 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

ldap_perror: don't print matched DN or error text if length is zero.

parent c73f17fd
Branches
Tags
No related merge requests found
......@@ -145,12 +145,12 @@ ldap_perror( LDAP *ld, LDAP_CONST char *str )
s, ld->ld_errno );
}
if ( ld->ld_matched != NULL ) {
if ( ld->ld_matched != NULL && ld->ld_matched[0] != '\0' ) {
fprintf( stderr, "\tmatched: \"%s\"\n",
ld->ld_matched );
}
if ( ld->ld_error != NULL ) {
if ( ld->ld_error != NULL && ld->ld_error[0] != '\0' ) {
fprintf( stderr, "\tadditional info: %s\n",
ld->ld_error );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment