diff options
author | Damien Glancy <damien.glancy@icloud.com> | 2013-07-20 22:34:53 +0100 |
---|---|---|
committer | Damien Glancy <damien.glancy@icloud.com> | 2013-07-20 22:34:53 +0100 |
commit | 290c2b33c10cd5520b0c4ce61bd679584be590db (patch) | |
tree | 72e45f128c8ce02b517b3356a08312c52b0f51bb /src/core | |
parent | e991ee7d6f3a453599d8643e61eb1b7bf766a461 (diff) |
changing #warnings to TODO
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/imap/MCIMAPSession.cc | 1 | ||||
-rw-r--r-- | src/core/pop/MCPOPSession.cc | 1 | ||||
-rw-r--r-- | src/core/smtp/MCSMTPSession.cc | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/core/imap/MCIMAPSession.cc b/src/core/imap/MCIMAPSession.cc index 4c0f9f99..3b0c9d36 100644 --- a/src/core/imap/MCIMAPSession.cc +++ b/src/core/imap/MCIMAPSession.cc @@ -487,6 +487,7 @@ static bool hasError(int errorCode) bool IMAPSession::checkCertificate() { + //TODO check certificate return true; } diff --git a/src/core/pop/MCPOPSession.cc b/src/core/pop/MCPOPSession.cc index a33f2396..42a8d585 100644 --- a/src/core/pop/MCPOPSession.cc +++ b/src/core/pop/MCPOPSession.cc @@ -129,6 +129,7 @@ bool POPSession::isCheckCertificateEnabled() bool POPSession::checkCertificate() { + //TODO check certificate return true; } diff --git a/src/core/smtp/MCSMTPSession.cc b/src/core/smtp/MCSMTPSession.cc index 77101b26..e6f51807 100644 --- a/src/core/smtp/MCSMTPSession.cc +++ b/src/core/smtp/MCSMTPSession.cc @@ -146,6 +146,7 @@ bool SMTPSession::isCheckCertificateEnabled() bool SMTPSession::checkCertificate() { + //TODO check certificate return true; } |