From 0894c989596feb8d97d582e87cca021339cc26cd Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Wed, 11 Oct 2006 14:52:41 +0000 Subject: Renamed 'vmime::platformDependant' to 'vmime::platform'. --- src/net/smtp/SMTPTransport.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/net/smtp/SMTPTransport.cpp') diff --git a/src/net/smtp/SMTPTransport.cpp b/src/net/smtp/SMTPTransport.cpp index 07da0e4c..1e873613 100644 --- a/src/net/smtp/SMTPTransport.cpp +++ b/src/net/smtp/SMTPTransport.cpp @@ -21,7 +21,7 @@ #include "vmime/net/smtp/SMTPResponse.hpp" #include "vmime/exception.hpp" -#include "vmime/platformDependant.hpp" +#include "vmime/platform.hpp" #include "vmime/encoderB64.hpp" #include "vmime/mailboxList.hpp" @@ -189,7 +189,7 @@ void SMTPTransport::helo() // S: 250-smtp.theserver.com // S: 250 AUTH CRAM-MD5 DIGEST-MD5 - sendRequest("EHLO " + platformDependant::getHandler()->getHostName()); + sendRequest("EHLO " + platform::getHandler()->getHostName()); ref resp; @@ -200,7 +200,7 @@ void SMTPTransport::helo() // eg: C: HELO thismachine.ourdomain.com // S: 250 OK - sendRequest("HELO " + platformDependant::getHandler()->getHostName()); + sendRequest("HELO " + platform::getHandler()->getHostName()); if ((resp = readResponse())->getCode() != 250) { -- cgit v1.2.3