diff options
Diffstat (limited to '')
-rw-r--r-- | src/usr.bin/openssl/ca.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr.bin/openssl/ca.c b/src/usr.bin/openssl/ca.c index 0e2e1c6450..c5ab691600 100644 --- a/src/usr.bin/openssl/ca.c +++ b/src/usr.bin/openssl/ca.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ca.c,v 1.3 2014/09/01 20:54:37 doug Exp $ */ | 1 | /* $OpenBSD: ca.c,v 1.4 2015/02/07 04:09:43 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 | * |
@@ -291,8 +291,8 @@ ca_main(int argc, char **argv) | |||
291 | STACK_OF(CONF_VALUE) * attribs = NULL; | 291 | STACK_OF(CONF_VALUE) * attribs = NULL; |
292 | STACK_OF(X509) * cert_sk = NULL; | 292 | STACK_OF(X509) * cert_sk = NULL; |
293 | STACK_OF(OPENSSL_STRING) * sigopts = NULL; | 293 | STACK_OF(OPENSSL_STRING) * sigopts = NULL; |
294 | #define BSIZE 256 | 294 | #define BUFLEN 256 |
295 | char buf[3][BSIZE]; | 295 | char buf[3][BUFLEN]; |
296 | #ifndef OPENSSL_NO_ENGINE | 296 | #ifndef OPENSSL_NO_ENGINE |
297 | char *engine = NULL; | 297 | char *engine = NULL; |
298 | #endif | 298 | #endif |