diff options
author | 2002-05-15 02:37:49 +0000 | |
---|---|---|
committer | 2002-05-15 02:37:49 +0000 | |
commit | c2c2f94b5dabb0d7c6f41ee44cb5f88849e75d69 (patch) | |
tree | 02c04f0faed5c974e378e7fe3e4b9772c03e1056 | |
parent | Build and run openssl regress tests in addition to our own. (diff) | |
download | wireguard-openbsd-c2c2f94b5dabb0d7c6f41ee44cb5f88849e75d69.tar.xz wireguard-openbsd-c2c2f94b5dabb0d7c6f41ee44cb5f88849e75d69.zip |
Tweak to make this work with OpenSSL 0.9.7
-rw-r--r-- | usr.sbin/httpd/src/modules/ssl/ssl_engine_vars.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.sbin/httpd/src/modules/ssl/ssl_engine_vars.c b/usr.sbin/httpd/src/modules/ssl/ssl_engine_vars.c index c0755a5ec84..e1dbfdfbc8e 100644 --- a/usr.sbin/httpd/src/modules/ssl/ssl_engine_vars.c +++ b/usr.sbin/httpd/src/modules/ssl/ssl_engine_vars.c @@ -391,6 +391,10 @@ static char *ssl_var_lookup_ssl_cert(pool *p, X509 *xs, char *var) return result; } +#ifndef NID_uniqueIdentifier +#define NID_uniqueIdentifier 102 +#endif + static const struct { char *name; int nid; |