summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2023-03-11 14:05:02 +0000
committerjsing <>2023-03-11 14:05:02 +0000
commit7cfbad9af6db4ef1d10fba9d2f470cc280d8e37e (patch)
tree4e71707b6b1a02a95fa95c0619d9a00acd0fe432
parentfa84d7922034e108e9bcd911f395501553a0a874 (diff)
downloadopenbsd-7cfbad9af6db4ef1d10fba9d2f470cc280d8e37e.tar.gz
openbsd-7cfbad9af6db4ef1d10fba9d2f470cc280d8e37e.tar.bz2
openbsd-7cfbad9af6db4ef1d10fba9d2f470cc280d8e37e.zip
Remove a pesky space.
-rw-r--r--src/lib/libcrypto/asn1/a_type.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/a_type.c b/src/lib/libcrypto/asn1/a_type.c
index 684321756f..a382cd71d3 100644
--- a/src/lib/libcrypto/asn1/a_type.c
+++ b/src/lib/libcrypto/asn1/a_type.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: a_type.c,v 1.24 2023/03/10 09:56:09 tb Exp $ */ 1/* $OpenBSD: a_type.c,v 1.25 2023/03/11 14:05:02 jsing 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 *
@@ -105,7 +105,7 @@ int
105ASN1_TYPE_get(const ASN1_TYPE *a) 105ASN1_TYPE_get(const ASN1_TYPE *a)
106{ 106{
107 /* Special non-pointer types. */ 107 /* Special non-pointer types. */
108 if (a->type == V_ASN1_BOOLEAN || a->type == V_ASN1_NULL ) 108 if (a->type == V_ASN1_BOOLEAN || a->type == V_ASN1_NULL)
109 return a->type; 109 return a->type;
110 110
111 if (a->value.ptr != NULL) 111 if (a->value.ptr != NULL)