fixed side effects of typo correction of expire_logs_days

This commit is contained in:
Frank Cizmich
2014-09-19 13:05:53 -03:00
parent a4278961f9
commit 9fd72e0fb7
2 changed files with 7 additions and 7 deletions

View File

@@ -430,10 +430,10 @@ sub get_rules {
},
},
{
id => 'expire_log_days',
id => 'expire_logs_days',
code => sub {
my ( %args ) = @_;
return _var_eq($args{variables}->{expire_log_days}, 0)
return _var_eq($args{variables}->{expire_logs_days}, 0)
&& _var_seq($args{variables}->{log_bin}, "ON");
},
},