2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 15:05:23 +00:00
This commit is contained in:
Mark Andrews
2005-05-16 07:02:22 +00:00
parent 35665db4e4
commit 64cde9d94a

View File

@@ -14,7 +14,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE. # PERFORMANCE OF THIS SOFTWARE.
# $Id: update_branches,v 1.5 2005/05/16 06:57:51 marka Exp $ # $Id: update_branches,v 1.6 2005/05/16 07:02:22 marka Exp $
%branches = (); %branches = ();
%whom = (); %whom = ();
@@ -36,11 +36,12 @@ while (<BRANCHES>) {
$c =~ s/.*(\(.*\)).*$/$1/; $c =~ s/.*(\(.*\)).*$/$1/;
s/\(.*\)//; s/\(.*\)//;
} }
s/\s$//;
next if (/^\s*$/); next if (/^\s*$/);
($branch, $status, $who) = split; ($branch, $status, $who) = split;
#$status = "new" if (!defined($status)); $status = "new" if (!defined($status));
$branches{$branch} = $status; $branches{$branch} = $status;
#$who = "-" if (!defined($who)); $who = "-" if (!defined($who));
$whom{$branch} = $who; $whom{$branch} = $who;
$comments{$branch} = $c; $comments{$branch} = $c;
} }