summaryrefslogtreecommitdiff
path: root/src/converter/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/converter/string.cpp')
-rw-r--r--src/converter/string.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/converter/string.cpp b/src/converter/string.cpp
index cbdc544..149d8b6 100644
--- a/src/converter/string.cpp
+++ b/src/converter/string.cpp
@@ -18,14 +18,14 @@ namespace smtp::converter
void String::ApplyAuth( manage::SettingsFields const& from, std::string& result ) const
{
- static const std::string FIELD = "need_auth";
+ static const std::string FIELD = "is_need_auth";
result += GetBoolParam( FIELD, from.is_need_auth);
}
void String::ApplySsl( manage::SettingsFields const& from, std::string& result ) const
{
- static const std::string FIELD = "need_ssl";
+ static const std::string FIELD = "is_need_ssl";
result += GetBoolParam( FIELD, from.is_need_ssl);
}