1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-02 10:51:20 +03:00

selinux: log selinux log messages with LOG_AUTH facility

This commit is contained in:
Lennart Poettering 2014-11-27 20:28:51 +01:00
parent 79008bddf6
commit 12f1caf40c

View File

@ -112,7 +112,7 @@ _printf_(2, 3) static int log_callback(int type, const char *fmt, ...) {
#endif #endif
va_start(ap, fmt); va_start(ap, fmt);
log_internalv(LOG_USER | LOG_INFO, 0, __FILE__, __LINE__, __FUNCTION__, fmt, ap); log_internalv(LOG_AUTH | LOG_INFO, 0, __FILE__, __LINE__, __FUNCTION__, fmt, ap);
va_end(ap); va_end(ap);
return 0; return 0;