mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 14:10:39 -05:00
ITS#9608 fix delete of nonexistent sessionlog
This commit is contained in:
parent
a464a6e98f
commit
0ae71bafcf
1 changed files with 2 additions and 1 deletions
|
|
@ -3658,7 +3658,8 @@ sp_cf_gen(ConfigArgs *c)
|
|||
si->si_chktime = 0;
|
||||
break;
|
||||
case SP_SESSL:
|
||||
si->si_logs->sl_size = 0;
|
||||
if ( si->si_logs )
|
||||
si->si_logs->sl_size = 0;
|
||||
break;
|
||||
case SP_NOPRES:
|
||||
si->si_nopres = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue