From 7279b97ee94bb98eee9b0d25b7341c632cfaf0de Mon Sep 17 00:00:00 2001 From: Nathan Whitehorn Date: Thu, 16 Dec 2004 02:06:42 +0000 Subject: [PATCH] Fixed an amazingly moronic mistake that kept anything from working with SSL support compiled in. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10471 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/mail_daemon/outbound_protocols/smtp/smtp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/mail_daemon/outbound_protocols/smtp/smtp.cpp b/src/add-ons/mail_daemon/outbound_protocols/smtp/smtp.cpp index c09380c484..630a2740a8 100644 --- a/src/add-ons/mail_daemon/outbound_protocols/smtp/smtp.cpp +++ b/src/add-ons/mail_daemon/outbound_protocols/smtp/smtp.cpp @@ -265,7 +265,7 @@ SMTPProtocol::Open(const char *address, int port, bool esmtp) if (port <= 0) #ifdef USESSL - port = use_ssl ? 25 : 465; + port = use_ssl ? 465 : 25; #else port = 25; #endif