diff options
| author | beck <> | 2017-01-26 00:52:22 +0000 |
|---|---|---|
| committer | beck <> | 2017-01-26 00:52:22 +0000 |
| commit | 5aa0d05b8a1451d177a8c2d532eb74359c4c9feb (patch) | |
| tree | f12651a09279c6617b017e4d7d8d1a84900a41fc /src | |
| parent | 8321241552ee8f5d971f520d360475c3b3642cad (diff) | |
| download | openbsd-5aa0d05b8a1451d177a8c2d532eb74359c4c9feb.tar.gz openbsd-5aa0d05b8a1451d177a8c2d532eb74359c4c9feb.tar.bz2 openbsd-5aa0d05b8a1451d177a8c2d532eb74359c4c9feb.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; |
