diff options
author | beck <> | 2017-01-26 00:52:22 +0000 |
---|---|---|
committer | beck <> | 2017-01-26 00:52:22 +0000 |
commit | aaefec2572fa5fee58a9335784ed7a74bc146a03 (patch) | |
tree | f12651a09279c6617b017e4d7d8d1a84900a41fc /src | |
parent | 343d327fc13befa69643d8929e2c9e176e532b9d (diff) | |
download | openbsd-aaefec2572fa5fee58a9335784ed7a74bc146a03.tar.gz openbsd-aaefec2572fa5fee58a9335784ed7a74bc146a03.tar.bz2 openbsd-aaefec2572fa5fee58a9335784ed7a74bc146a03.zip |
Fix the structure initialzation to compile. bad inioguchi and millert :)
ok jsing@ rpe@
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.sbin/ocspcheck/ocspcheck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr.sbin/ocspcheck/ocspcheck.c b/src/usr.sbin/ocspcheck/ocspcheck.c index 1483081f88..38ec5a0ecc 100644 --- a/src/usr.sbin/ocspcheck/ocspcheck.c +++ b/src/usr.sbin/ocspcheck/ocspcheck.c | |||
@@ -505,7 +505,7 @@ main (int argc, char **argv) | |||
505 | { | 505 | { |
506 | char *host = NULL, *path = "/", *certfile = NULL, *outfile = NULL, | 506 | char *host = NULL, *path = "/", *certfile = NULL, *outfile = NULL, |
507 | *cafile = NULL; | 507 | *cafile = NULL; |
508 | struct addr addrs[MAX_SERVERS_DNS] = {0}; | 508 | struct addr addrs[MAX_SERVERS_DNS] = {{0}}; |
509 | struct source sources[MAX_SERVERS_DNS]; | 509 | struct source sources[MAX_SERVERS_DNS]; |
510 | int i, ch, staplefd = -1, nonce = 1; | 510 | int i, ch, staplefd = -1, nonce = 1; |
511 | ocsp_request *request = NULL; | 511 | ocsp_request *request = NULL; |