diff options
author | Vincent Richard <[email protected]> | 2013-01-15 12:21:10 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-01-15 12:21:10 +0000 |
commit | ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c (patch) | |
tree | 39536da12a50881850f98c81a8f3ac7838954e2c /src/net/serviceInfos.cpp | |
parent | Better test for stream state. (diff) | |
download | vmime-ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c.tar.gz vmime-ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c.zip |
Renamed TYPE_BOOL to avoid name collision on MacOS.
Diffstat (limited to 'src/net/serviceInfos.cpp')
-rw-r--r-- | src/net/serviceInfos.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/serviceInfos.cpp b/src/net/serviceInfos.cpp index 85b55a9d..751bae3f 100644 --- a/src/net/serviceInfos.cpp +++ b/src/net/serviceInfos.cpp @@ -53,10 +53,10 @@ const serviceInfos::property serviceInfos::property::AUTH_PASSWORD #if VMIME_HAVE_TLS_SUPPORT const serviceInfos::property serviceInfos::property::CONNECTION_TLS - ("connection.tls", serviceInfos::property::TYPE_BOOL, "false"); + ("connection.tls", serviceInfos::property::TYPE_BOOLEAN, "false"); const serviceInfos::property serviceInfos::property::CONNECTION_TLS_REQUIRED - ("connection.tls.required", serviceInfos::property::TYPE_BOOL, "false"); + ("connection.tls.required", serviceInfos::property::TYPE_BOOLEAN, "false"); #endif // VMIME_HAVE_TLS_SUPPORT |