
mmartinec at apache
Aug 7, 2013, 6:10 AM
Post #1 of 1
(14 views)
Permalink
|
|
svn commit: r1511296 - /spamassassin/trunk/lib/Mail/SpamAssassin/AsyncLoop.pm
|
|
Author: mmartinec Date: Wed Aug 7 13:10:06 2013 New Revision: 1511296 URL: http://svn.apache.org/r1511296 Log: avoid a potential "Insecure dependency in sprintf" in a call to dbg() Modified: spamassassin/trunk/lib/Mail/SpamAssassin/AsyncLoop.pm Modified: spamassassin/trunk/lib/Mail/SpamAssassin/AsyncLoop.pm URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/AsyncLoop.pm?rev=1511296&r1=1511295&r2=1511296&view=diff ============================================================================== --- spamassassin/trunk/lib/Mail/SpamAssassin/AsyncLoop.pm (original) +++ spamassassin/trunk/lib/Mail/SpamAssassin/AsyncLoop.pm Wed Aug 7 13:10:06 2013 @@ -630,8 +630,8 @@ sub set_response_packet { my $ent_id = $ent->{id}; if (!defined $ent_id) { # should not happen, troubleshooting - info("async: ignoring response, id $id, ent_id is undef: %s", - join(', ', %$ent)); + info("async: ignoring response, id %s, ent_id is undef: %s", + $id, join(', ', %$ent)); } elsif ($id ne $ent_id) { info("async: ignoring response, mismatched id $id, expected $ent_id"); } else {
|