diff options
author | joe <joe@FreeBSD.org> | 2001-05-14 03:19:44 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-05-14 03:19:44 +0800 |
commit | c933865424c05b153ea229778db4e105606fd9d7 (patch) | |
tree | 37325d830794529694e7c7b151c23be7f51a10ee /CVSROOT | |
parent | 6e38253227fe085bfff6f5de0553f9a3f7cb7544 (diff) | |
download | freebsd-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-x | CVSROOT/logcheck | 10 |
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))?' ); |