From b751d5609f915aaafde78782c15cd91af71af69e Mon Sep 17 00:00:00 2001 From: alecpl Date: Thu, 18 Dec 2008 18:22:25 +0000 Subject: [PATCH] #1485157: fix DIGEST-MD5 authentication --- program/lib/Net/SMTP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/lib/Net/SMTP.php b/program/lib/Net/SMTP.php index a116b3baeb2..6e1bb03307e 100644 --- a/program/lib/Net/SMTP.php +++ b/program/lib/Net/SMTP.php @@ -532,7 +532,7 @@ function _authDigest_MD5($uid, $pwd) /* 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 */