/* * If the addr parameter being passed to an audit logging function (such * as audit_log_user_message) is "", it should bypass a reverse dns lookup. * Reverse lookup should not be performed. (... shorter strace log) */ #include #include int main(void) { int fd = audit_open(); audit_log_user_message(fd, AUDIT_USER_AUTH, "", NULL, "", NULL, 1); return 0; }