summaryrefslogtreecommitdiff
path: root/plugins/sudoers/regress/fuzz/fuzz_sudoers.c
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@sudo.ws>2023-05-02 13:29:49 -0600
committerTodd C. Miller <Todd.Miller@sudo.ws>2023-05-02 13:29:49 -0600
commit9690ab60b9770ee0b5adcdf1cbfcb4a8970977ff (patch)
tree57f7a31e72747c6fabc005835e25a32b3e66967e /plugins/sudoers/regress/fuzz/fuzz_sudoers.c
parent899add50a9ab6ad963b3f849c033326fb95866da (diff)
downloadsudo-9690ab60b9770ee0b5adcdf1cbfcb4a8970977ff.tar.gz
Rename init_parser_ext() to init_parser() and remove old wrapper.
There was only one consumer of the init_parser() wrapper now that reset_parser() has been introduced.
Diffstat (limited to 'plugins/sudoers/regress/fuzz/fuzz_sudoers.c')
-rw-r--r--plugins/sudoers/regress/fuzz/fuzz_sudoers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sudoers/regress/fuzz/fuzz_sudoers.c b/plugins/sudoers/regress/fuzz/fuzz_sudoers.c
index 61f913c62..0919c4d76 100644
--- a/plugins/sudoers/regress/fuzz/fuzz_sudoers.c
+++ b/plugins/sudoers/regress/fuzz/fuzz_sudoers.c
@@ -312,7 +312,7 @@ LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
/* Initialize defaults and parse sudoers. */
init_defaults();
- init_parser_ext("sudoers", NULL, true, 1);
+ init_parser("sudoers", NULL, true, 1);
sudoersrestart(fp);
sudoersparse();
reparent_parse_tree(&parse_tree);