diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/x509/x509.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h index 43af626613..788d97aaa4 100644 --- a/src/lib/libcrypto/x509/x509.h +++ b/src/lib/libcrypto/x509/x509.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509.h,v 1.54 2018/05/18 17:59:16 tb Exp $ */ | 1 | /* $OpenBSD: x509.h,v 1.55 2018/05/18 18:02:07 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 | * |
@@ -1106,9 +1106,9 @@ X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc); | |||
1106 | int X509_NAME_add_entry(X509_NAME *name, const X509_NAME_ENTRY *ne, | 1106 | int X509_NAME_add_entry(X509_NAME *name, const X509_NAME_ENTRY *ne, |
1107 | int loc, int set); | 1107 | int loc, int set); |
1108 | int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, | 1108 | int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, |
1109 | unsigned char *bytes, int len, int loc, int set); | 1109 | const unsigned char *bytes, int len, int loc, int set); |
1110 | int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, | 1110 | int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, |
1111 | unsigned char *bytes, int len, int loc, int set); | 1111 | const unsigned char *bytes, int len, int loc, int set); |
1112 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, | 1112 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, |
1113 | const char *field, int type, const unsigned char *bytes, int len); | 1113 | const char *field, int type, const unsigned char *bytes, int len); |
1114 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, | 1114 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, |