summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2023-03-11 14:05:02 +0000
committerjsing <>2023-03-11 14:05:02 +0000
commitfc34d2e11e2863715e991553eaeef6c687ec8910 (patch)
tree4e71707b6b1a02a95fa95c0619d9a00acd0fe432 /src
parenta37432c2352483517ffedecd5b2c6aab922dbd1c (diff)
downloadopenbsd-fc34d2e11e2863715e991553eaeef6c687ec8910.tar.gz
openbsd-fc34d2e11e2863715e991553eaeef6c687ec8910.tar.bz2
openbsd-fc34d2e11e2863715e991553eaeef6c687ec8910.zip
Remove a pesky space.
Diffstat (limited to 'src')
-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)