diff options
-rw-r--r-- | doc/credits.txt | 5 | ||||
-rw-r--r-- | src/x509cert.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/credits.txt b/doc/credits.txt index 3a7ab4c9d..c451c76ea 100644 --- a/doc/credits.txt +++ b/doc/credits.txt @@ -17,6 +17,11 @@ D: Binary file I/O support, allocator fixes N: Hany Greiss D: Windows porting +N: Yves Jerschow +D: Bugfixes +S: Germany + N: Matt Johnston D: Allocator fixes and optimizations, decompressor fixes diff --git a/src/x509cert.cpp b/src/x509cert.cpp index 3ea9cc833..fcd63949b 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("RFC882/DNS/URI")); + = info.search_with(AltName_Matcher("RFC822/DNS/URI")); AlternativeName alt_name; |