On Wed, May 11, 2005 at 02:02:12PM +0200, Chris Knipe wrote: > # This is the main loop for authentication requests > while (<STDIN>) { ^^^^^^^^^^^^^^^^^^^^^^^^^ Either squid, or perl does not like this.... while (my $Input = <STDIN>) { Works :) *yay* it only took me a day to figure this out!! *shrugs* Thanks for the help guys, Chris.