aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/smtp/SMTPServiceInfos.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-01-15 12:21:10 +0000
committerVincent Richard <[email protected]>2013-01-15 12:21:10 +0000
commitea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c (patch)
tree39536da12a50881850f98c81a8f3ac7838954e2c /src/net/smtp/SMTPServiceInfos.cpp
parentBetter test for stream state. (diff)
downloadvmime-ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c.tar.gz
vmime-ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c.zip
Renamed TYPE_BOOL to avoid name collision on MacOS.
Diffstat (limited to 'src/net/smtp/SMTPServiceInfos.cpp')
-rw-r--r--src/net/smtp/SMTPServiceInfos.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/net/smtp/SMTPServiceInfos.cpp b/src/net/smtp/SMTPServiceInfos.cpp
index 60022b80..2927495f 100644
--- a/src/net/smtp/SMTPServiceInfos.cpp
+++ b/src/net/smtp/SMTPServiceInfos.cpp
@@ -55,10 +55,10 @@ const SMTPServiceInfos::props& SMTPServiceInfos::getProperties() const
static props smtpProps =
{
// SMTP-specific options
- property("options.need-authentication", serviceInfos::property::TYPE_BOOL, "false"),
+ property("options.need-authentication", serviceInfos::property::TYPE_BOOLEAN, "false"),
#if VMIME_HAVE_SASL_SUPPORT
- property("options.sasl", serviceInfos::property::TYPE_BOOL, "true"),
- property("options.sasl.fallback", serviceInfos::property::TYPE_BOOL, "false"),
+ property("options.sasl", serviceInfos::property::TYPE_BOOLEAN, "true"),
+ property("options.sasl.fallback", serviceInfos::property::TYPE_BOOLEAN, "false"),
#endif // VMIME_HAVE_SASL_SUPPORT
// Common properties
@@ -77,10 +77,10 @@ const SMTPServiceInfos::props& SMTPServiceInfos::getProperties() const
static props smtpsProps =
{
// SMTP-specific options
- property("options.need-authentication", serviceInfos::property::TYPE_BOOL, "false"),
+ property("options.need-authentication", serviceInfos::property::TYPE_BOOLEAN, "false"),
#if VMIME_HAVE_SASL_SUPPORT
- property("options.sasl", serviceInfos::property::TYPE_BOOL, "true"),
- property("options.sasl.fallback", serviceInfos::property::TYPE_BOOL, "false"),
+ property("options.sasl", serviceInfos::property::TYPE_BOOLEAN, "true"),
+ property("options.sasl.fallback", serviceInfos::property::TYPE_BOOLEAN, "false"),
#endif // VMIME_HAVE_SASL_SUPPORT
// Common properties