--- loncom/lonnet/perl/lonnet.pm 2003/07/09 06:20:42 1.389 +++ loncom/lonnet/perl/lonnet.pm 2003/07/11 20:41:41 1.390 @@ -1,7 +1,7 @@ # The LearningOnline Network # TCP networking package # -# $Id: lonnet.pm,v 1.389 2003/07/09 06:20:42 www Exp $ +# $Id: lonnet.pm,v 1.390 2003/07/11 20:41:41 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -4100,7 +4100,8 @@ BEGIN { %domain_auth_arg_def = (); if ($fh) { while (<$fh>) { - next if /^\#/; + next if (/^(\#|\s*$)/); +# next if /^\#/; chomp; my ($domain, $domain_description, $def_auth, $def_auth_arg) = split(/:/,$_,4);