diff options
author | tb <> | 2018-03-17 15:28:27 +0000 |
---|---|---|
committer | tb <> | 2018-03-17 15:28:27 +0000 |
commit | 6901496c6e645908747ab7b69ce947f3ea51fa84 (patch) | |
tree | ad43d4b686c612f6c1e9e0e35986f6d900c88366 /src/lib/libcrypto/x509/x509name.c | |
parent | 2650ae604a4290c33d7b66ac010a0704ba8e4bff (diff) | |
download | openbsd-6901496c6e645908747ab7b69ce947f3ea51fa84.tar.gz openbsd-6901496c6e645908747ab7b69ce947f3ea51fa84.tar.bz2 openbsd-6901496c6e645908747ab7b69ce947f3ea51fa84.zip |
Provide X509_NAME_ENTRY_set()
ok jsing
Diffstat (limited to 'src/lib/libcrypto/x509/x509name.c')
-rw-r--r-- | src/lib/libcrypto/x509/x509name.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509name.c b/src/lib/libcrypto/x509/x509name.c index ef242ce0a5..2ca1a76b64 100644 --- a/src/lib/libcrypto/x509/x509name.c +++ b/src/lib/libcrypto/x509/x509name.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509name.c,v 1.14 2017/01/29 17:49:23 beck Exp $ */ | 1 | /* $OpenBSD: x509name.c,v 1.15 2018/03/17 15:28:27 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 | * |
@@ -405,3 +405,9 @@ X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne) | |||
405 | return (NULL); | 405 | return (NULL); |
406 | return (ne->value); | 406 | return (ne->value); |
407 | } | 407 | } |
408 | |||
409 | int | ||
410 | X509_NAME_ENTRY_set(const X509_NAME_ENTRY *ne) | ||
411 | { | ||
412 | return (ne->set); | ||
413 | } | ||