]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update
authorMark Andrews <marka@isc.org>
Mon, 16 May 2005 07:02:22 +0000 (07:02 +0000)
committerMark Andrews <marka@isc.org>
Mon, 16 May 2005 07:02:22 +0000 (07:02 +0000)
util/update_branches

index 886237b8ddc99f95f60cb6a4937bae1cb994b1e2..1281ee7b66dc611e237c36a64ba9f2605c8fd510 100644 (file)
@@ -14,7 +14,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # 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 = ();
 %whom = ();
@@ -36,11 +36,12 @@ while (<BRANCHES>) {
                $c =~ s/.*(\(.*\)).*$/$1/;
                s/\(.*\)//;
        }
+       s/\s$//;
        next if (/^\s*$/);
        ($branch, $status, $who) = split;
-       #$status = "new" if (!defined($status));
+       $status = "new" if (!defined($status));
        $branches{$branch} = $status;
-       #$who = "-" if (!defined($who));
+       $who = "-" if (!defined($who));
        $whom{$branch} = $who;
        $comments{$branch} = $c;
 }