diff options
author | lloyd <[email protected]> | 2007-05-31 04:14:56 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-05-31 04:14:56 +0000 |
commit | 305db323498adca6cc0d3c6272626e47742c0758 (patch) | |
tree | 28f4cd5cded10fdac0c17d56bec35de92442a298 /src/x509cert.cpp | |
parent | 09eb089712be0b0f2098c97cb76c427da1210ef5 (diff) |
On an assignment or initialization split across lines, put the = at the end
of the line rather than the start.
Diffstat (limited to 'src/x509cert.cpp')
-rw-r--r-- | src/x509cert.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/x509cert.cpp b/src/x509cert.cpp index fcd63949b..404e56f29 100644 --- a/src/x509cert.cpp +++ b/src/x509cert.cpp @@ -313,8 +313,8 @@ X509_DN create_dn(const Data_Store& info) } }; - std::multimap<std::string, std::string> names - = info.search_with(DN_Matcher()); + std::multimap<std::string, std::string> names = + info.search_with(DN_Matcher()); X509_DN dn; @@ -349,8 +349,8 @@ AlternativeName create_alt_name(const Data_Store& info) std::vector<std::string> matches; }; - std::multimap<std::string, std::string> names - = info.search_with(AltName_Matcher("RFC822/DNS/URI")); + std::multimap<std::string, std::string> names = + info.search_with(AltName_Matcher("RFC822/DNS/URI")); AlternativeName alt_name; |