diff options
author | alecpl <alec@alec.pl> | 2008-11-28 08:53:48 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-11-28 08:53:48 +0000 |
commit | 7342d7ef8c277c32bb161eeb585d98099f2b04fe (patch) | |
tree | 03b38c6b5a7723d436486fad212c4d3adb69e6ed /program/lib/imap.inc | |
parent | b2265aea867124e201e7883ac16df05dd446fae5 (diff) |
- re-fix r2095
Diffstat (limited to 'program/lib/imap.inc')
-rw-r--r-- | program/lib/imap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc index f269c2127..6fb60e90a 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -586,7 +586,7 @@ function iil_Connect($host, $user, $password) { $conn->fp = fsockopen($host, $ICL_PORT, $errno, $errstr, 10); if (!$conn->fp) { $iil_error = "Could not connect to $host at port $ICL_PORT: $errstr"; - $iil_errornum = -1; + $iil_errornum = -2; return false; } |