diff options
author | tb <> | 2018-04-25 11:48:21 +0000 |
---|---|---|
committer | tb <> | 2018-04-25 11:48:21 +0000 |
commit | 8092d4e5908838632c7363f83d8b8f13fd30cfaf (patch) | |
tree | 2706fdfa25b0fa2dc71fc06b437d687057013dcc /src/lib/libcrypto/asn1/asn1_lib.c | |
parent | 84c943ca0b3c30b47e6f704f3348268b374693f6 (diff) | |
download | openbsd-8092d4e5908838632c7363f83d8b8f13fd30cfaf.tar.gz openbsd-8092d4e5908838632c7363f83d8b8f13fd30cfaf.tar.bz2 openbsd-8092d4e5908838632c7363f83d8b8f13fd30cfaf.zip |
Add const to functions in asn1/asn1.h as they did in OpenSSL.
BIO_f_asn1() will be taken care of later.
Tested in a bulk by sthen
ok bcook jca jsing
Diffstat (limited to 'src/lib/libcrypto/asn1/asn1_lib.c')
-rw-r--r-- | src/lib/libcrypto/asn1/asn1_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/asn1_lib.c b/src/lib/libcrypto/asn1/asn1_lib.c index 970102c213..ffd3ad6a46 100644 --- a/src/lib/libcrypto/asn1/asn1_lib.c +++ b/src/lib/libcrypto/asn1/asn1_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1_lib.c,v 1.40 2018/02/14 16:46:04 jsing Exp $ */ | 1 | /* $OpenBSD: asn1_lib.c,v 1.41 2018/04/25 11:48:21 tb 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 | * |
@@ -474,7 +474,7 @@ ASN1_STRING_length_set(ASN1_STRING *x, int len) | |||
474 | } | 474 | } |
475 | 475 | ||
476 | int | 476 | int |
477 | ASN1_STRING_type(ASN1_STRING *x) | 477 | ASN1_STRING_type(const ASN1_STRING *x) |
478 | { | 478 | { |
479 | return (x->type); | 479 | return (x->type); |
480 | } | 480 | } |