[LON-CAPA-cvs] cvs: loncom /lonnet/perl lonnet.pm

www lon-capa-cvs@mail.lon-capa.org
Thu, 10 Oct 2002 14:34:05 -0000


www		Thu Oct 10 10:34:05 2002 EDT

  Modified files:              
    /loncom/lonnet/perl	lonnet.pm 
  Log:
  This was whining at startup, claiming that the reference to "dump" was
  ambiguous, and thus linked to Core::dump.
  
  
Index: loncom/lonnet/perl/lonnet.pm
diff -u loncom/lonnet/perl/lonnet.pm:1.295 loncom/lonnet/perl/lonnet.pm:1.296
--- loncom/lonnet/perl/lonnet.pm:1.295	Thu Oct 10 09:06:08 2002
+++ loncom/lonnet/perl/lonnet.pm	Thu Oct 10 10:34:05 2002
@@ -1,7 +1,7 @@
 # The LearningOnline Network
 # TCP networking package
 #
-# $Id: lonnet.pm,v 1.295 2002/10/10 13:06:08 www Exp $
+# $Id: lonnet.pm,v 1.296 2002/10/10 14:34:05 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -2328,7 +2328,7 @@
     if ($first eq '' || $last eq '' || $uid eq '') {
         # They did not supply us with enough data to enroll the student, so
         # we need to pick up more information.
-        my %tmp = dump('environment',$udom,$uname,
+        my %tmp = &dump('environment',$udom,$uname,
                        ['firstname','middlename','lastname', 'generation','id']
                        );
         $first  = $tmp{'firstname'}  if (!defined($first)  || $first  eq '');