diff options
| author | bcook <> | 2014-10-13 02:46:14 +0000 |
|---|---|---|
| committer | bcook <> | 2014-10-13 02:46:14 +0000 |
| commit | e4f0e4e453aebb92ffad8cf5a9a9107e9bd5c062 (patch) | |
| tree | fe844d1b23ff3110f712568be274c93e35fe07c6 /src/usr.bin/openssl/crl.c | |
| parent | e2a3519b1b62c76a0286e3bef886f0b0cde58634 (diff) | |
| download | openbsd-e4f0e4e453aebb92ffad8cf5a9a9107e9bd5c062.tar.gz openbsd-e4f0e4e453aebb92ffad8cf5a9a9107e9bd5c062.tar.bz2 openbsd-e4f0e4e453aebb92ffad8cf5a9a9107e9bd5c062.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 |
