Fix typo.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38981 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -252,10 +252,10 @@ SMTPProtocol::SMTPProtocol(BMessage *message, BMailChainRunner *run)
|
|||||||
int32 authMethod = fSettings->FindInt32("auth_method");
|
int32 authMethod = fSettings->FindInt32("auth_method");
|
||||||
|
|
||||||
if (authMethod == 2) {
|
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
|
// because some servers obviously don't like establishing the connection
|
||||||
// to the SMTP server first...
|
// to the SMTP server first...
|
||||||
fStatus = POP3Authentification();
|
fStatus = POP3Authentication();
|
||||||
if (fStatus < B_OK) {
|
if (fStatus < B_OK) {
|
||||||
error_msg << MDR_DIALECT_CHOICE ("POP3 authentication failed. The server said:\n","POP3認証に失敗しました\n") << fLog;
|
error_msg << MDR_DIALECT_CHOICE ("POP3 authentication failed. The server said:\n","POP3認証に失敗しました\n") << fLog;
|
||||||
runner->ShowError(error_msg.String());
|
runner->ShowError(error_msg.String());
|
||||||
@@ -532,7 +532,7 @@ SMTPProtocol::Open(const char *address, int port, bool esmtp)
|
|||||||
|
|
||||||
|
|
||||||
status_t
|
status_t
|
||||||
SMTPProtocol::POP3Authentification()
|
SMTPProtocol::POP3Authentication()
|
||||||
{
|
{
|
||||||
// find the POP3 filter of the other chain - identify by name...
|
// find the POP3 filter of the other chain - identify by name...
|
||||||
BList chains;
|
BList chains;
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ class SMTPProtocol : public BMailFilter {
|
|||||||
status_t SendCommand(const char *cmd);
|
status_t SendCommand(const char *cmd);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
status_t POP3Authentification();
|
status_t POP3Authentication();
|
||||||
|
|
||||||
int _fd;
|
int _fd;
|
||||||
BString fLog;
|
BString fLog;
|
||||||
|
|||||||
Reference in New Issue
Block a user