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
This commit is contained in:
Nathan Whitehorn
2004-12-16 02:06:42 +00:00
parent 56904be516
commit 7279b97ee9
@@ -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