aboutsummaryrefslogtreecommitdiffstats
path: root/src/x509cert.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2007-10-16 16:21:48 +0000
committerlloyd <[email protected]>2007-10-16 16:21:48 +0000
commit2f92c34e3938641f7cc3e553953d676d2e95ea2d (patch)
treeffb5dab90dde2bb20bf6f4a7d9d9f9f7c0dd8011 /src/x509cert.cpp
parent19a5c9f4d223314dc5eb6c971f332171f3a85623 (diff)
Add support for IPv4 addresses in the X.509 alternative name extension.
Original patch from Yves Jerschow.
Diffstat (limited to 'src/x509cert.cpp')
-rw-r--r--src/x509cert.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x509cert.cpp b/src/x509cert.cpp
index 404e56f29..549b916c5 100644
--- a/src/x509cert.cpp
+++ b/src/x509cert.cpp
@@ -350,7 +350,7 @@ AlternativeName create_alt_name(const Data_Store& info)
};
std::multimap<std::string, std::string> names =
- info.search_with(AltName_Matcher("RFC822/DNS/URI"));
+ info.search_with(AltName_Matcher("RFC822/DNS/URI/IP"));
AlternativeName alt_name;