]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
don't hard code the current year
authorMark Andrews <marka@isc.org>
Fri, 12 Jun 2009 04:07:27 +0000 (04:07 +0000)
committerMark Andrews <marka@isc.org>
Fri, 12 Jun 2009 04:07:27 +0000 (04:07 +0000)
util/update_copyrights

index e51d223808382a2d4cd46de08c67f450b6bec7c1..80be96dc9c9777882658ed1d7c79339b58df5e04 100644 (file)
@@ -15,7 +15,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: update_copyrights,v 1.51.156.2 2009/01/06 23:47:26 tbox Exp $
+# $Id: update_copyrights,v 1.51.156.3 2009/06/12 04:07:27 marka Exp $
 
 require 5.002;
 
@@ -56,6 +56,10 @@ my %file_years = ();
 my $years_list;
 my $parent;
 
+($dummy,$dummy,$dummy,$dummy,$dummy,$this_year,$dummy,$dummy,$dummy) = localtime(time());
+$this_year += 1900;
+
+
 while (<>) {
        chomp;
        ($file, $type, $years) = split(/\s+/);
@@ -431,7 +435,7 @@ foreach $file (keys %file_types) {
                        print TARGET "\n";
                 }
 
-               if ($type eq "C" && $sysyears =~ /2009/) {
+               if ($type eq "C" && $sysyears =~ /$this_year/) {
                        my $body = "";
                        while (<SOURCE>) {
                        # Process leading white space.