--- loncom/lonsql 2004/08/26 19:29:09 1.65 +++ loncom/lonsql 2005/02/09 20:39:47 1.66 @@ -3,7 +3,7 @@ # The LearningOnline Network # lonsql - LON TCP-MySQL-Server Daemon for handling database requests. # -# $Id: lonsql,v 1.65 2004/08/26 19:29:09 albertel Exp $ +# $Id: lonsql,v 1.66 2005/02/09 20:39:47 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -258,14 +258,12 @@ if (-e $pidfile) { # # Read hosts file # -my %hostip; my $thisserver; my $PREFORK=4; # number of children to maintain, at least four spare open (CONFIG,"$perlvar{'lonTabDir'}/hosts.tab") || die "Can't read host file"; while (my $configline=) { - my ($id,$domain,$role,$name,$ip)=split(/:/,$configline); - chomp($ip); - $hostip{$ip}=$id; + my ($id,$domain,$role,$name)=split(/:/,$configline); + $name=~s/\s//g; $thisserver=$name if ($id eq $perlvar{'lonHostID'}); #$PREFORK++; }