From 697d99e50411b29eeb82667a870bd10c5efa9509 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 22 Oct 2019 13:52:40 -0400 Subject: validate_fn(): remove now-unused defaults and from_setconf. These arguments were only used by options_validate, and are now ignored even there. --- src/test/test_confparse.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/test/test_confparse.c') diff --git a/src/test/test_confparse.c b/src/test/test_confparse.c index 5f29a22c10..cfdcd34c3a 100644 --- a/src/test/test_confparse.c +++ b/src/test/test_confparse.c @@ -103,12 +103,9 @@ static config_deprecation_t test_deprecation_notes[] = { }; static int -test_validate_cb(void *old_options, void *options, void *default_options, - int from_setconf, char **msg) +test_validate_cb(void *old_options, void *options, char **msg) { (void)old_options; - (void)default_options; - (void)from_setconf; (void)msg; test_struct_t *ts = options; -- cgit v1.2.3-54-g00ecf