Fix typo.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38981 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin
2010-10-16 08:34:29 +00:00
parent 7b2d993398
commit 360208fb1f
2 changed files with 4 additions and 4 deletions
@@ -252,10 +252,10 @@ SMTPProtocol::SMTPProtocol(BMessage *message, BMailChainRunner *run)
int32 authMethod = fSettings->FindInt32("auth_method");
if (authMethod == 2) {
// POP3 authentification is handled here instead of SMTPProtocol::Login()
// POP3 authentication is handled here instead of SMTPProtocol::Login()
// because some servers obviously don't like establishing the connection
// to the SMTP server first...
fStatus = POP3Authentification();
fStatus = POP3Authentication();
if (fStatus < B_OK) {
error_msg << MDR_DIALECT_CHOICE ("POP3 authentication failed. The server said:\n","POP3認証に失敗しました\n") << fLog;
runner->ShowError(error_msg.String());
@@ -532,7 +532,7 @@ SMTPProtocol::Open(const char *address, int port, bool esmtp)
status_t
SMTPProtocol::POP3Authentification()
SMTPProtocol::POP3Authentication()
{
// find the POP3 filter of the other chain - identify by name...
BList chains;
@@ -37,7 +37,7 @@ class SMTPProtocol : public BMailFilter {
status_t SendCommand(const char *cmd);
private:
status_t POP3Authentification();
status_t POP3Authentication();
int _fd;
BString fLog;