From 09412ef67313e8cc62c4f10105d45d16b79b75f7 Mon Sep 17 00:00:00 2001 From: Justin Erenkrantz Date: Thu, 18 Apr 2002 08:45:34 +0000 Subject: [PATCH] Fix so that we can compile with OpenSSL 0.9.8-dev. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@94696 13f79535-47bb-0310-9956-ffa450edef68 --- ssl_engine_vars.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ssl_engine_vars.c b/ssl_engine_vars.c index 1671ec116c4..fbb39b2799a 100644 --- a/ssl_engine_vars.c +++ b/ssl_engine_vars.c @@ -395,7 +395,10 @@ static const struct { { "G", NID_givenName }, { "S", NID_surname }, { "D", NID_description }, +/* This has been removed in OpenSSL 0.9.8-dev. */ +#ifdef NID_uniqueIdentifier { "UID", NID_uniqueIdentifier }, +#endif { "Email", NID_pkcs9_emailAddress }, { NULL, 0 } }; -- 2.47.2