]> git.pond.sub.org Git - empserver/blobdiff - scripts/xdump.pl
License upgrade to GPL version 3 or later
[empserver] / scripts / xdump.pl
index 2c56d02b2ab0cb7f8df6742410da2f917c6e1576..ee2e2f5a72335fef3967c5dc3ea68567d45d7fc8 100644 (file)
@@ -1,11 +1,11 @@
 #!/usr/bin/perl
 #
 # xdump example program.
-# Copyright (C) 2006 Markus Armbruster
+# Copyright (C) 2006-2011 Markus Armbruster
 #
-# This program is free software; you can redistribute it and/or modify
+# Empire is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
+# the Free Software Foundation, either version 3 of the License, or
 # (at your option) any later version.
 #
 # This program is distributed in the hope that it will be useful,
@@ -14,8 +14,7 @@
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 # Connect to server, xdump everything into tables, then print the
 # tables.
@@ -164,7 +163,7 @@ sub parse_xdump {
     my $n = 0;
     while ($data !~ /^\//) {
        ($_, $data) = split(/\n/, $data, 2);
-       my @fld = split(/ /);   
+       my @fld = split(/ /);
        &$store_record($tuid, $meta, $name, $n, \@fld, $timestamp);
        $n++;
     }