aboutsummaryrefslogtreecommitdiffstats
path: root/CVSROOT
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2001-05-14 03:19:44 +0800
committerjoe <joe@FreeBSD.org>2001-05-14 03:19:44 +0800
commitc933865424c05b153ea229778db4e105606fd9d7 (patch)
tree37325d830794529694e7c7b151c23be7f51a10ee /CVSROOT
parent6e38253227fe085bfff6f5de0553f9a3f7cb7544 (diff)
downloadfreebsd-ports-gnome-c933865424c05b153ea229778db4e105606fd9d7.tar.gz
freebsd-ports-gnome-c933865424c05b153ea229778db4e105606fd9d7.tar.zst
freebsd-ports-gnome-c933865424c05b153ea229778db4e105606fd9d7.zip
By default defined template headers should match /^.*$/, not /^$/.
Diffstat (limited to 'CVSROOT')
-rwxr-xr-xCVSROOT/logcheck10
1 files changed, 5 insertions, 5 deletions
diff --git a/CVSROOT/logcheck b/CVSROOT/logcheck
index d6169bbb187c..25d20d3bd715 100755
--- a/CVSROOT/logcheck
+++ b/CVSROOT/logcheck
@@ -25,11 +25,11 @@ use strict;
# that is used to type-check the entered value. If the match failed
# then the commit is rejected. (See rcstemplate).
my %HEADERS = (
- "Reviewed by" => "",
- "Submitted by" => "",
- "Obtained from" => "",
- "Approved by" => "",
- "PR" => "",
+ "Reviewed by" => '.*',
+ "Submitted by" => '.*',
+ "Obtained from" => '.*',
+ "Approved by" => '.*',
+ "PR" => '.*',
"MFC after" => '[\d]+( (days|weeks))?'
);