--- loncom/auth/lontokacc.pm 2005/03/03 05:44:51 1.15 +++ loncom/auth/lontokacc.pm 2007/03/02 23:17:48 1.17 @@ -1,7 +1,7 @@ # The LearningOnline Network # Access Handler for User File Transfers # -# $Id: lontokacc.pm,v 1.15 2005/03/03 05:44:51 albertel Exp $ +# $Id: lontokacc.pm,v 1.17 2007/03/02 23:17:48 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -59,7 +59,7 @@ sub handler { $readline=~s/\s*$//; my ($id,$domain,$role,$name)=split(/:/,$readline); foreach my $hostid (@{$hostids}) { - my $hostname=$Apache::lonnet::hostname{$hostid}; + my $hostname=&Apache::lonnet::hostname($hostid); if ($name =~ /^\Q$hostname\E$/i) { return OK; } @@ -80,6 +80,7 @@ sub removefile { } else { &Apache::lonnet::logthis('Failed to transfer '.$r->filename); } + return OK; } 1; __END__