From b751d5609f915aaafde78782c15cd91af71af69e Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Thu, 18 Dec 2008 13:22:25 -0500 Subject: [PATCH] #1485157: fix DIGEST-MD5 authentication --- program/lib/Net/SMTP.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/lib/Net/SMTP.php b/program/lib/Net/SMTP.php index a116b3b..6e1bb03 100644 --- a/program/lib/Net/SMTP.php +++ b/program/lib/Net/SMTP.php @@ -532,7 +532,7 @@ /* We don't use the protocol's third step because SMTP doesn't * allow subsequent authentication, so we just silently ignore * it. */ - if (PEAR::isError($error = $this->_put(' '))) { + if (PEAR::isError($error = $this->_put(''))) { return $error; } /* 235: Authentication successful */ -- Gitblit v1.9.1