This is an issue with the latest update of the AUM RPM package from the upstream provider (Atomic)
There's a new parameter "PURGE_LOGS" that's been added to the configuration file "/etc/asl/config". The cronjob "/etc/cron.daily/asl" uses this new parameter and expects it to be set to either the new default "no", or a number.
However, since the package is already installed, the "yum" package manager does not update the existing config file, since that would override any customisations by the sysadmin. Instead, the RPM default behaviour is to save the new config file as "/etc/asl/config.rpmnew".
Thus, the updated cronjob has no value for "$PURGE_LOGS", and therefore the "find" command has a missing parameter to the "ctime" option, resulting in this error.
I can see only one solution, and that is that the upstream provider adds some logic to the RPM package's post-install-scripts to add the newly added options to the existing config-file, without overwriting the entire file.
The alternative would be to manually edit the existing config-file and add the missing PURGE_LOGS="no" line...
Or, to use a one-liner (be careful, and NEVER just blindly paste one-liners from the internet, always make sure it does what you expect and want):
# grep -q PURGE_LOGS /etc/asl/config || sed -i '/general configuration/a PURGE_LOGS="no"' /etc/asl/config; /var/asl/bin/aum -uf
This adds the line to the file, but only if it does not contain the parameter already, making it idempotent
edited: added "/var/asl/bin/aum -uf" after the 'sed' to activate the changes, as is mentioned in the config-file