If killall runs really quickly then it' possible for process_age to be
0.0. The existing logic will then always kill the process due t
"&& process_age" always being false in that case.
continue;
/* test for process age, if required */
- if ( younger_than && process_age_sec && (process_age_sec > younger_than ) )
+ if ( younger_than && (process_age_sec > younger_than ) )
continue;
- if ( older_than && process_age_sec && (process_age_sec < older_than ) )
+ if ( older_than && (process_age_sec < older_than ) )
continue;
got_long = 0;