]> git.etc.gen.nz Git - spong.git/commitdiff
contac group processing has wrong variable subscript in add_contact()
authorStephen L Johnson <sjohnson@monsters.org>
Fri, 20 Apr 2001 19:04:17 +0000 (19:04 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Fri, 20 Apr 2001 19:04:17 +0000 (19:04 +0000)
src/spong-message.pl

index df44b5390875ec85d5f30b79f99beb36eee5fa2c..24b980216ff1295dafa5aa5b826a27c12b4686df 100755 (executable)
@@ -12,7 +12,7 @@
 # (2) Added rules based paging (Stephen Johnson  Nov 14, 1998)
 # (3) Added checks against Acks and downtime (Stephen Johnson  Mar 17, 1999)
 #
-# $Id: spong-message.pl,v 1.28 2001/04/17 21:39:48 sljohnson Exp $
+# $Id: spong-message.pl,v 1.29 2001/04/20 19:04:17 sljohnson Exp $
 
 use lib "@@LIBDIR@@";
 
@@ -703,7 +703,7 @@ sub add_contact {
           $contact->{'rcpt'} : ": " . $contact));
    if ( ref($contact) eq 'HASH') {
 #      foreach $rcpt ( split /[, \t]+/, $contact->{'rcpt'} ) {
-         if ( $HUMANS{$contact}{'rcpt'}{'group'} ) {
+         if ( $HUMANS{ $contact{'rcpt'} }{'group'} ) {
             my $groupee;
             foreach $groupee ( split /[, \t]+/, $HUMANS{$rcpt}->{'group'} ) {
                my $newent = {'rcpt' => $groupee};