Index: mythtv/programs/scripts/database/mythconverg_restore.pl
===================================================================
--- mythtv.orig/programs/scripts/database/mythconverg_restore.pl	2008-12-06 03:00:31.000000000 -0500
+++ mythtv/programs/scripts/database/mythconverg_restore.pl	2008-12-06 11:55:17.000000000 -0500
@@ -13,7 +13,7 @@
 
 # Script info
     $NAME           = 'MythTV Database Restore Script';
-    $VERSION        = '1.0.2';
+    $VERSION        = '1.0.3';
 
 # Some variables we'll use here
     our ($username, $homedir, $mythconfdir, $database_information_file);
@@ -769,6 +769,7 @@
                 }
             }
             my @files = <$backup_conf{'directory'}/$backup_conf{'filename'}*>;
+            @files = grep(!/.*mythconverg_(backup|restore).pl$/, @files);
             my $num_files = @files;
             if ($num_files < 1)
             {
@@ -919,9 +920,12 @@
         my $exit = $? >> 8;
         verbose($verbose_level_debug,
                 "\n$mysql_client exited with status:  $exit");
-        verbose($verbose_level_error,
-                "$mysql_client output:", $result) if ($exit);
-        die("\nUnable to create initial database, stopped");
+        if ($exit)
+        {
+            verbose($verbose_level_error,
+                    "$mysql_client output:", $result);
+            die("\nUnable to create initial database, stopped");
+        }
         return $exit;
     }
 
