From 16cad51a44b5fc8f50bd76e6a082e7a31ddc483f Mon Sep 17 00:00:00 2001 From: fidian Date: Thu, 24 May 2001 17:04:05 +0000 Subject: [PATCH] * Fixed typo git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1403 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/smtp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/smtp.php b/functions/smtp.php index 52d554bb..1454c405 100644 --- a/functions/smtp.php +++ b/functions/smtp.php @@ -405,7 +405,7 @@ $tmp = fgets($smtpConnection, 1024); if (errorCheck($tmp, $smtpConnection)!=5) return(0); - fputs($smtpConnection, base64_encode ($OneTimePadDecrypt($key, $onetimepad)) . "\r\n"); + fputs($smtpConnection, base64_encode (OneTimePadDecrypt($key, $onetimepad)) . "\r\n"); $tmp = fgets($smtpConnection, 1024); if (errorCheck($tmp, $smtpConnection)!=5) return(0); } -- 2.25.1