From ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Tue, 15 Jan 2013 13:21:10 +0100 Subject: Renamed TYPE_BOOL to avoid name collision on MacOS. --- src/net/smtp/SMTPServiceInfos.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/net/smtp') 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 -- cgit