diff options
-rw-r--r-- | rcynic/rcynic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rcynic/rcynic.c b/rcynic/rcynic.c index 45104756..46e5bed2 100644 --- a/rcynic/rcynic.c +++ b/rcynic/rcynic.c @@ -846,7 +846,7 @@ static int check_cert(const rcynic_ctx_t *rc, !access(path, R_OK)) return 0; /* Already seen, don't walk it again */ - rsync(rc, uri); + rsync(rc, uri, NULL); assert(certs); @@ -881,7 +881,7 @@ static void walk_cert(const rcynic_ctx_t *rc, certinfo_t *parent, certinfo_t child; DIR *dir = NULL; - rsync(rc, "--recursive", "--delete", parent->sia); + rsync(rc, "--recursive", "--delete", parent->sia, NULL); while (next_uri(rc, parent->sia, rc->unauthenticated, uri, sizeof(uri), &dir)) |