QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
299 B

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/grinternal.h>
#include <linux/module.h>
void
gr_log_timechange(void)
{
#ifdef CONFIG_GRKERNSEC_TIME
if (grsec_enable_time)
gr_log_noargs(GR_DONT_AUDIT_GOOD, GR_TIME_MSG);
#endif
return;
}
EXPORT_SYMBOL_GPL(gr_log_timechange);