From: Alberto Leiva Popper Date: Thu, 9 Oct 2025 16:53:30 +0000 (-0600) Subject: Allow relative paths for --output.roa and --output.bgpsec X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f95a8f8b3a6ebcbc4eb2407b1291d7cd5e0c5a44;p=thirdparty%2FFORT-validator.git Allow relative paths for --output.roa and --output.bgpsec --- diff --git a/src/config.c b/src/config.c index 95e62d99..50132a81 100644 --- a/src/config.c +++ b/src/config.c @@ -1127,6 +1127,8 @@ become_absolute_paths(void) become_absolute_path(cwd, &rpki_config.report.path); become_absolute_path(cwd, &rpki_config.slurm); become_absolute_path(cwd, &rpki_config.http.ca_path); + become_absolute_path(cwd, &rpki_config.output.roa); + become_absolute_path(cwd, &rpki_config.output.bgpsec); free(buf); return 0;