Use C99 initializers for the default_pctx and mark it static const
authortb <tb@openbsd.org>
Mon, 17 Apr 2023 08:43:16 +0000 (08:43 +0000)
committertb <tb@openbsd.org>
Mon, 17 Apr 2023 08:43:16 +0000 (08:43 +0000)
lib/libcrypto/asn1/tasn_prn.c

index 7f93e48..9652a97 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: tasn_prn.c,v 1.23 2022/11/26 16:08:50 tb Exp $ */
+/* $OpenBSD: tasn_prn.c,v 1.24 2023/04/17 08:43:16 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2000.
  */
 
 /* ASN1_PCTX routines */
 
-ASN1_PCTX default_pctx = {
-       ASN1_PCTX_FLAGS_SHOW_ABSENT,    /* flags */
-       0,                              /* nm_flags */
-       0,                              /* cert_flags */
-       0,                              /* oid_flags */
-       0                               /* str_flags */
+static const ASN1_PCTX default_pctx = {
+       .flags = ASN1_PCTX_FLAGS_SHOW_ABSENT,
 };
 
-
 ASN1_PCTX *
 ASN1_PCTX_new(void)
 {