From 6dfcadafd3458221aff39b784b5456ac2002653a Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 19 Aug 2011 17:45:10 -0400 Subject: Fix problem with regex in copyright test. Report and fix by Kris Jurka --- src/tools/copyright.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl index e91aea11652..91f73e37ab3 100755 --- a/src/tools/copyright.pl +++ b/src/tools/copyright.pl @@ -13,7 +13,7 @@ use warnings; use File::Find; my $pgdg = 'PostgreSQL Global Development Group'; -my $cc = 'Copyright (c) '; +my $cc = 'Copyright \(c\) '; # year-1900 is what localtime(time) puts in element 5 my $year = 1900 + ${[localtime(time)]}[5]; -- cgit v1.2.3