2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 06:55:30 +00:00
This commit is contained in:
Mark Andrews
2005-05-16 07:03:47 +00:00
parent 64cde9d94a
commit cbb94d52f9

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.6 2005/05/16 07:02:22 marka Exp $ # $Id: update_branches,v 1.7 2005/05/16 07:03:47 marka Exp $
%branches = (); %branches = ();
%whom = (); %whom = ();
@@ -41,7 +41,7 @@ while (<BRANCHES>) {
($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;
} }