summaryrefslogtreecommitdiff
path: root/program/lib/Net
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-12-18 18:22:25 +0000
committeralecpl <alec@alec.pl>2008-12-18 18:22:25 +0000
commitb751d5609f915aaafde78782c15cd91af71af69e (patch)
tree8e374f0f3568af8083f0a23cf4c95795161504bc /program/lib/Net
parent07717db7530ac180c88cedc4aeca3de85cde75dd (diff)
#1485157: fix DIGEST-MD5 authentication
Diffstat (limited to 'program/lib/Net')
-rw-r--r--program/lib/Net/SMTP.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Net/SMTP.php b/program/lib/Net/SMTP.php
index a116b3bae..6e1bb0330 100644
--- a/program/lib/Net/SMTP.php
+++ b/program/lib/Net/SMTP.php
@@ -532,7 +532,7 @@ class Net_SMTP
/* 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 */