artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6e54bb
)
Add missing field initializer.
author
tb
<tb@openbsd.org>
Fri, 4 Nov 2022 13:01:19 +0000
(13:01 +0000)
committer
tb
<tb@openbsd.org>
Fri, 4 Nov 2022 13:01:19 +0000
(13:01 +0000)
ok claudio
usr.sbin/rpki-client/output.c
patch
|
blob
|
history
diff --git
a/usr.sbin/rpki-client/output.c
b/usr.sbin/rpki-client/output.c
index
aa995a0
..
d2a3b13
100644
(file)
--- a/
usr.sbin/rpki-client/output.c
+++ b/
usr.sbin/rpki-client/output.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: output.c,v 1.2
7 2022/08/30 18:56:49 jo
b Exp $ */
+/* $OpenBSD: output.c,v 1.2
8 2022/11/04 13:01:19 t
b Exp $ */
/*
* Copyright (c) 2019 Theo de Raadt <deraadt@openbsd.org>
*
@@
-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 *);