mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#9608 fix delete of nonexistent sessionlog
This commit is contained in:
parent
79efecd3ae
commit
db23304b18
1 changed files with 2 additions and 1 deletions
|
|
@ -3161,7 +3161,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