mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
Fixed the bug with member servers in a Samba PDC hosted domain not allowing
other access. Problem was max time was being set to 0xffffffff, instead of 0x7fffffff. Jeremy.
This commit is contained in:
@ -346,8 +346,14 @@ BOOL reopen_logs( void )
|
||||
oldumask = umask( 022 );
|
||||
|
||||
pstrcpy(fname, debugf );
|
||||
if (lp_loaded() && (*lp_logfile()))
|
||||
pstrcpy(fname, lp_logfile());
|
||||
|
||||
if (lp_loaded()) {
|
||||
char *logfname;
|
||||
|
||||
logfname = lp_logfile();
|
||||
if (*logfname)
|
||||
pstrcpy(fname, logfname);
|
||||
}
|
||||
|
||||
pstrcpy( debugf, fname );
|
||||
if (append_log)
|
||||
|
Reference in New Issue
Block a user