style update
Change-Id: Iba7fcadc781bdde3e461a9203d53918d2a9e1fe8
diff --git a/src/identity-challenge/challenge-email.cpp b/src/identity-challenge/challenge-email.cpp
index 502885e..e979753 100644
--- a/src/identity-challenge/challenge-email.cpp
+++ b/src/identity-challenge/challenge-email.cpp
@@ -122,7 +122,8 @@
}
Block
-ChallengeEmail::genChallengeRequestTLV(Status status, const std::string& challengeStatus, std::vector<std::tuple<std::string, std::string>>&& params)
+ChallengeEmail::genChallengeRequestTLV(Status status, const std::string& challengeStatus,
+ std::vector<std::tuple<std::string, std::string>>&& params)
{
Block request = makeEmptyBlock(tlv::EncryptedPayload);
if (status == Status::BEFORE_CHALLENGE) {
@@ -161,7 +162,9 @@
const ca::RequestState& request) const
{
std::string command = m_sendEmailScript;
- command += " \"" + emailAddress + "\" \"" + secret + "\" \"" + request.m_caPrefix.toUri() + "\" \"" + request.m_cert.getName().toUri() + "\"";
+ command += " \"" + emailAddress + "\" \"" + secret + "\" \"" +
+ request.m_caPrefix.toUri() + "\" \"" +
+ request.m_cert.getName().toUri() + "\"";
int result = system(command.c_str());
if (result == -1) {
NDN_LOG_TRACE("EmailSending Script " + m_sendEmailScript + " fails.");