summaryrefslogtreecommitdiffstatsabout
path: root/contrib
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2004-02-12 23:32:26 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2004-02-12 23:32:26 (GMT)
commiteee7a95a0e6922e808f1b02996c688b3b1b1477e (patch)
tree25f2aea33f7c234a03b9e909e0d7e2fcc7c8d411 /contrib
parentbdb5c0e5ea921d274b797f3b9b311b713eb0b792 (diff)
Updated Author information in file.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/mysql_import_combined_log.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/mysql_import_combined_log.pl b/contrib/mysql_import_combined_log.pl
index 1c801f2..cc5b8de 100644
--- a/contrib/mysql_import_combined_log.pl
+++ b/contrib/mysql_import_combined_log.pl
@@ -1,4 +1,8 @@
1#!/usr/bin/perl -w 1#!/usr/bin/perl -w
2
3# Written by Aaron Jenson.
4# Original source: http://www.visualprose.com/software.php
5# Updated to work under Perl 5.6.1 by Edward Rudd
2use strict; 6use strict;
3use Getopt::Long qw(:config bundling); 7use Getopt::Long qw(:config bundling);
4use DBI; 8use DBI;
@@ -216,6 +220,8 @@ EOF
216sub VERSION_MESSAGE 220sub VERSION_MESSAGE
217{ 221{
218 print "mysql_import_combined_log.pl version 1.1\n"; 222 print "mysql_import_combined_log.pl version 1.1\n";
223 print "Version 1.0 Written by Aaron Jenson.\n";
224 print "Update to work with perl 5.6.1 by Edward Rudd\n";
219} 225}
220 226
2211; 2271;