in reply to Getting the Value of a single hash key

Ahh, you don't need to use push, you can change the line:

push( @{$hash{$key}}, $src);
to:
$hash{$key}=$src;

And all should be well.

Good Luck