summaryrefslogtreecommitdiffstats
path: root/perl
diff options
context:
space:
mode:
authorcebka@lenovo-laptop <cebka@lenovo-laptop>2010-03-15 21:10:04 +0300
committercebka@lenovo-laptop <cebka@lenovo-laptop>2010-03-15 21:10:04 +0300
commitdc5ec7dd650e94dac64ad07e9a169e7771f2f961 (patch)
tree3dd5deab889cd7cd3a957c029da063cd4eaa934f /perl
parent2e890cdbf4d8e8ed77a4c77cacbf346da9325207 (diff)
downloadrspamd-dc5ec7dd650e94dac64ad07e9a169e7771f2f961.tar.gz
rspamd-dc5ec7dd650e94dac64ad07e9a169e7771f2f961.zip
* Fixes to rspamc
Diffstat (limited to 'perl')
-rw-r--r--perl/lib/Mail/Rspamd/Client.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/lib/Mail/Rspamd/Client.pm b/perl/lib/Mail/Rspamd/Client.pm
index 9460b1ee9..49413ea59 100644
--- a/perl/lib/Mail/Rspamd/Client.pm
+++ b/perl/lib/Mail/Rspamd/Client.pm
@@ -661,7 +661,7 @@ sub _auth {
local $SIG{PIPE} = 'IGNORE';
- if (!(syswrite($sock, "PASSWORD $self->{password}$EOL"))) {
+ if (!(syswrite($sock, "password $self->{password}$EOL"))) {
$self->_mark_dead($remote);
return 0;
}