diff options
author | bcook <> | 2014-10-13 02:46:14 +0000 |
---|---|---|
committer | bcook <> | 2014-10-13 02:46:14 +0000 |
commit | 0dcf90d37015e94e560e71431735595427be713b (patch) | |
tree | fe844d1b23ff3110f712568be274c93e35fe07c6 /src/usr.bin/openssl/crl.c | |
parent | 7b944af97196f9b4b28af3b73db474a465f413a6 (diff) | |
download | openbsd-0dcf90d37015e94e560e71431735595427be713b.tar.gz openbsd-0dcf90d37015e94e560e71431735595427be713b.tar.bz2 openbsd-0dcf90d37015e94e560e71431735595427be713b.zip |
prefer C99 array initialization syntax.
use C99 array initialization syntax for strict C compilers.
from kinichiro, found building with HP/UX compiler
ok deraadt@, guenther@
Diffstat (limited to 'src/usr.bin/openssl/crl.c')
-rw-r--r-- | src/usr.bin/openssl/crl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/crl.c b/src/usr.bin/openssl/crl.c index 91f3b6b4e8..0391e6e4dc 100644 --- a/src/usr.bin/openssl/crl.c +++ b/src/usr.bin/openssl/crl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: crl.c,v 1.4 2014/09/17 02:20:45 lteo Exp $ */ | 1 | /* $OpenBSD: crl.c,v 1.5 2014/10/13 02:46:14 bcook Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -198,7 +198,7 @@ static struct option crl_options[] = { | |||
198 | .type = OPTION_FLAG, | 198 | .type = OPTION_FLAG, |
199 | .opt.flag = &crl_config.verify, | 199 | .opt.flag = &crl_config.verify, |
200 | }, | 200 | }, |
201 | {}, | 201 | {NULL}, |
202 | }; | 202 | }; |
203 | 203 | ||
204 | static void | 204 | static void |