diff options
| author | tb <> | 2018-03-17 15:28:27 +0000 |
|---|---|---|
| committer | tb <> | 2018-03-17 15:28:27 +0000 |
| commit | fef50d3251e65bc98c6b39640b7cd716e0439bd9 (patch) | |
| tree | ad43d4b686c612f6c1e9e0e35986f6d900c88366 /src/lib/libcrypto/x509/x509name.c | |
| parent | c7258cf3d366e4675ae1398659213748993af23e (diff) | |
| download | openbsd-fef50d3251e65bc98c6b39640b7cd716e0439bd9.tar.gz openbsd-fef50d3251e65bc98c6b39640b7cd716e0439bd9.tar.bz2 openbsd-fef50d3251e65bc98c6b39640b7cd716e0439bd9.zip | |
Provide X509_NAME_ENTRY_set()
ok jsing
Diffstat (limited to '')
| -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 | } | ||
