Skip to content
Snippets Groups Projects
Commit ef1d8662 authored by Ben Collins's avatar Ben Collins
Browse files

fix formatting

parent 4d0a95db
No related branches found
No related tags found
No related merge requests found
......@@ -50,17 +50,16 @@ void (lutil_debug)( int level, int debug, const char *fmt, ... )
return;
#ifdef HAVE_WINSOCK
if( log_file == NULL )
{
if( log_file == NULL ) {
log_file = fopen( LDAP_RUNDIR LDAP_DIRSEP "openldap.log", "w" );
if ( log_file == NULL )
if ( log_file == NULL )
log_file = fopen( "openldap.log", "w" );
if ( log_file == NULL )
return;
ber_set_option( NULL, LBER_OPT_LOG_PRINT_FILE, log_file );
ber_set_option( NULL, LBER_OPT_LOG_PRINT_FILE, log_file );
}
#endif
va_start( vl, fmt );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment