http://bugzilla.spamassassin.org/show_bug.cgi?id=3917





------- Additional Comments From [EMAIL PROTECTED]  2004-11-21 20:47 -------
Ok, a stylistic question: there are seven calls to print $client and two to
printf $client. Changing each of them to syswrite can be done by changing

 print $client "SPAMD/1.2 $resphash{EX_OK} PONG\r\n";

into

  my $str = "SPAMD/1.2 $resphash{EX_OK} PONG\r\n";
  syswrite($client, $str, length($str));

or into

  wprint( $client, "SPAMD/1.2 $resphash{EX_OK} PONG\r\n");

and have wprint be a two line sub that calls syswrite.

Any preference?




------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

Reply via email to