From 53ff252d078ff0276517e7672c543c8db71cb55f Mon Sep 17 00:00:00 2001 From: job Date: Mon, 26 Feb 2024 20:37:27 +0000 Subject: [PATCH] Also download SPLs via rsync OK tb@ --- usr.sbin/rpki-client/rsync.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.sbin/rpki-client/rsync.c b/usr.sbin/rpki-client/rsync.c index 808a9207abc..ca838e08fa7 100644 --- a/usr.sbin/rpki-client/rsync.c +++ b/usr.sbin/rpki-client/rsync.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rsync.c,v 1.48 2023/11/24 14:05:47 job Exp $ */ +/* $OpenBSD: rsync.c,v 1.49 2024/02/26 20:37:27 job Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons * @@ -159,6 +159,7 @@ exec_rsync(const char *prog, const char *bind_addr, char *uri, char *dst, args[i++] = "--include=*.roa"; args[i++] = "--include=*.asa"; args[i++] = "--include=*.tak"; + args[i++] = "--include=*.spl"; args[i++] = "--exclude=*"; if (bind_addr != NULL) { args[i++] = "--address"; -- 2.20.1