From 4269b8344d4a7e1cf24848b9b2225605e170d101 Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 4 Nov 2022 13:01:19 +0000 Subject: [PATCH] Add missing field initializer. ok claudio --- usr.sbin/rpki-client/output.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/rpki-client/output.c b/usr.sbin/rpki-client/output.c index aa995a0be3e..d2a3b13b6fd 100644 --- a/usr.sbin/rpki-client/output.c +++ b/usr.sbin/rpki-client/output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: output.c,v 1.27 2022/08/30 18:56:49 job Exp $ */ +/* $OpenBSD: output.c,v 1.28 2022/11/04 13:01:19 tb Exp $ */ /* * Copyright (c) 2019 Theo de Raadt * @@ -73,7 +73,7 @@ static const struct outputs { { FORMAT_BIRD, "bird", output_bird2 }, { FORMAT_CSV, "csv", output_csv }, { FORMAT_JSON, "json", output_json }, - { 0, NULL } + { 0, NULL, NULL } }; static FILE *output_createtmp(char *); -- 2.20.1