summaryrefslogtreecommitdiff
path: root/FAQ
diff options
context:
space:
mode:
authorjaenicke <jaenicke>2002-06-12 20:41:37 +0000
committerjaenicke <jaenicke>2002-06-12 20:41:37 +0000
commit682aaeaffa3bdcb48a66affe33bae8627ebd85fb (patch)
tree9f361104af7182ae4646d5fe0ead2ceb0729e48e /FAQ
parentf91529d181e4e51906c91748e73c0f8721f76e7a (diff)
downloadopenssl-682aaeaffa3bdcb48a66affe33bae8627ebd85fb.tar.gz
Make change uniqueIdentifier -> x500UniqueIdentifier clearly visible.
Submitted by: Reviewed by: PR: 82
Diffstat (limited to 'FAQ')
-rw-r--r--FAQ9
1 files changed, 9 insertions, 0 deletions
diff --git a/FAQ b/FAQ
index bea8fcfde..42844d58d 100644
--- a/FAQ
+++ b/FAQ
@@ -52,6 +52,7 @@ OpenSSL - Frequently Asked Questions
* Why can't the OpenSSH configure script detect OpenSSL?
* Can I use OpenSSL's SSL library with non-blocking I/O?
* Why doesn't my server application receive a client certificate?
+* Why does compilation fail due to an undefined symbol NID_uniqueIdentifier?
===============================================================================
@@ -624,5 +625,13 @@ if explicitly asked by the server. Use the SSL_VERIFY_PEER flag of the
SSL_CTX_set_verify() function to enable the use of client certificates.
+* Why does compilation fail due to an undefined symbol NID_uniqueIdentifier?
+
+For OpenSSL 0.9.7 the OID table was extended and corrected. uniqueIdentifier
+was incorrectly used for X.509 certificates. The correct name according to
+RFC2256 (LDAP) is x500UniqueIdentifier. Change your code to use the new
+name when compiling against OpenSSL 0.9.7.
+
+
===============================================================================