[LON-CAPA-cvs] cvs: loncom / lond

foxr lon-capa-cvs@mail.lon-capa.org
Thu, 29 Jul 2004 22:31:19 -0000


foxr		Thu Jul 29 18:31:19 2004 EDT

  Modified files:              
    /loncom	lond 
  Log:
  Put back in missing return value from push_file.
  
  
Index: loncom/lond
diff -u loncom/lond:1.218 loncom/lond:1.219
--- loncom/lond:1.218	Thu Jul 29 06:50:54 2004
+++ loncom/lond	Thu Jul 29 18:31:18 2004
@@ -2,7 +2,7 @@
 # The LearningOnline Network
 # lond "LON Daemon" Server (port "LOND" 5663)
 #
-# $Id: lond,v 1.218 2004/07/29 10:50:54 foxr Exp $
+# $Id: lond,v 1.219 2004/07/29 22:31:18 foxr Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -56,7 +56,7 @@
 my $status='';
 my $lastlog='';
 
-my $VERSION='$Revision: 1.218 $'; #' stupid emacs
+my $VERSION='$Revision: 1.219 $'; #' stupid emacs
 my $remoteVERSION;
 my $currenthostid="default";
 my $currentdomainid;
@@ -1281,6 +1281,7 @@
     } else {
 	&Failure( $client, "refused\n", $userinput);
     } 
+    return 1;
 }
 &register_handler("pushfile", \&push_file_handler, 1, 0, 1);