diff options
Diffstat (limited to 'src/lib/x509/x509_dn.cpp')
-rw-r--r-- | src/lib/x509/x509_dn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/x509/x509_dn.cpp b/src/lib/x509/x509_dn.cpp index 9eb509dab..2285e561e 100644 --- a/src/lib/x509/x509_dn.cpp +++ b/src/lib/x509/x509_dn.cpp @@ -61,7 +61,7 @@ std::multimap<std::string, std::string> X509_DN::contents() const std::string str_value = OIDS::oid2str(i.first); if(str_value.empty()) - str_value = i.first.as_string(); + str_value = i.first.to_string(); multimap_insert(retval, str_value, i.second.value()); } return retval; |