--- loncom/lond	2009/12/03 17:43:19	1.434
+++ loncom/lond	2010/01/06 04:19:08	1.435.2.1
@@ -2,7 +2,7 @@
 # The LearningOnline Network
 # lond "LON Daemon" Server (port "LOND" 5663)
 #
-# $Id: lond,v 1.434 2009/12/03 17:43:19 www Exp $
+# $Id: lond,v 1.435.2.1 2010/01/06 04:19:08 raeburn Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -59,7 +59,7 @@ my $DEBUG = 0;		       # Non zero to ena
 my $status='';
 my $lastlog='';
 
-my $VERSION='$Revision: 1.434 $'; #' stupid emacs
+my $VERSION='$Revision: 1.435.2.1 $'; #' stupid emacs
 my $remoteVERSION;
 my $currenthostid="default";
 my $currentdomainid;
@@ -2091,6 +2091,8 @@ sub update_resource_handler {
 	if (-e $fname) {
             # Delete preview file, if exists
             unlink("$fname.tmp");
+            # Delete GCI Test Assembly preview file, if exists
+            unlink("$fname.tn");
             # Get usage stats
 	    my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
 		$atime,$mtime,$ctime,$blksize,$blocks)=stat($fname);
@@ -3129,7 +3131,7 @@ sub dump_with_regexp {
                     if ($clientversion =~ /^(\d+)\.(\d+)$/) {
                         my $major = $1;
                         my $minor = $2;
-                        next if (($major < 2) || (($major == 2) && ($minor < 10)));
+                        next if (($major < 2) || (($major == 2) && ($minor < 9)));
                     }
                 }
             }