1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-09 01:18:19 +03:00

basic/missing_audit: add explanatory comment

It seems we need to check for the header file because it's not available in
some fuzzer builds.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2024-03-19 10:58:59 +01:00
parent aee547b97b
commit 0dee6f7a7b

View File

@ -25,6 +25,8 @@ assert_cc(AUDIT_SERVICE_STOP == 1131);
assert_cc(MAX_AUDIT_MESSAGE_LENGTH == 8970);
#endif
/* Note: we check for AUDIT_NLGRP_MAX because it's a define, but we actually
* need AUDIT_NLGRP_READLOG which is an enum. */
#ifndef AUDIT_NLGRP_MAX
# define AUDIT_NLGRP_READLOG 1
#else