2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00

Move audit.c from libparsesudoers to the sudoers module itself.

Now that audit.c contains the audit module it doesn't belong in
libparsesudoers.
This commit is contained in:
Todd C. Miller 2021-02-12 11:13:52 -07:00
parent 942b11149c
commit 1f97ef92b7
2 changed files with 3 additions and 2 deletions

View File

@ -701,6 +701,7 @@ plugins/sudoers/regress/cvtsudoers/test9.sh
plugins/sudoers/regress/env_match/check_env_pattern.c
plugins/sudoers/regress/env_match/data
plugins/sudoers/regress/exptilde/check_exptilde.c
plugins/sudoers/regress/fuzz/fuzz_policy.c
plugins/sudoers/regress/fuzz/fuzz_sudoers.c
plugins/sudoers/regress/fuzz/fuzz_sudoers.out.ok
plugins/sudoers/regress/fuzz/fuzz_sudoers_ldif.c

View File

@ -165,7 +165,7 @@ FUZZ_LDFLAGS = @LDFLAGS@
AUTH_OBJS = sudo_auth.lo @AUTH_OBJS@
LIBPARSESUDOERS_OBJS = alias.lo audit.lo base64.lo defaults.lo digestname.lo \
LIBPARSESUDOERS_OBJS = alias.lo base64.lo defaults.lo digestname.lo \
exptilde.lo filedigest.lo gentime.lo gmtoff.lo gram.lo \
hexchar.lo match.lo match_addr.lo match_command.lo \
match_digest.lo pwutil.lo pwutil_impl.lo rcstr.lo \
@ -174,7 +174,7 @@ LIBPARSESUDOERS_OBJS = alias.lo audit.lo base64.lo defaults.lo digestname.lo \
LIBPARSESUDOERS_IOBJS = $(LIBPARSESUDOERS_OBJS:.lo=.i) passwd.i
SUDOERS_OBJS = $(AUTH_OBJS) boottime.lo check.lo editor.lo env.lo \
SUDOERS_OBJS = $(AUTH_OBJS) audit.lo boottime.lo check.lo editor.lo env.lo \
env_pattern.lo file.lo find_path.lo fmtsudoers.lo gc.lo \
goodpath.lo group_plugin.lo interfaces.lo iolog.lo \
iolog_path_escapes.lo locale.lo log_client.lo logging.lo \