Add missing \n's in Debug statements

This commit is contained in:
Hallvard Furuseth 1999-04-03 03:39:16 +00:00
parent 730d267465
commit a0b741102d
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ void
ldap_pvt_thread_free_stack( int stackno )
{
if ( stackno < 0 || stackno > MAX_THREADS ) {
Debug( LDAP_DEBUG_ANY, "free_stack of bogus stack %d",
Debug( LDAP_DEBUG_ANY, "free_stack of bogus stack %d\n",
stackno, 0, 0 );
}

View File

@ -198,7 +198,7 @@ op_ldap_add(
} else {
*errmsg = "No modifications to do";
Debug( LDAP_DEBUG_ANY,
"Error: op_ldap_add: no mods to do (%s)!", re->re_dn, 0, 0 );
"Error: op_ldap_add: no mods to do (%s)!\n", re->re_dn, 0, 0 );
}
free_ldmarr( ldmarr );
return( lderr );