Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
272c289
)
Fix problem with regex in copyright test.
author
Bruce Momjian
<bruce@momjian.us>
Fri, 19 Aug 2011 21:45:10 +0000
(17:45 -0400)
committer
Bruce Momjian
<bruce@momjian.us>
Fri, 19 Aug 2011 21:45:10 +0000
(17:45 -0400)
Report and fix by Kris Jurka
src/tools/copyright.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/copyright.pl
b/src/tools/copyright.pl
index e91aea11652d44b2fc0bda239f63f7360b11d764..91f73e37ab3f1d34a779faec1d9df48d5766ed2a 100755
(executable)
--- 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];