From 2290129d4c0ac9cad939bc472b8a217a7930d38c Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Sat, 24 Jul 1999 05:04:37 +0000 Subject: [PATCH] Fixed stupid typos that caused it to not correctly report whether a tree is open. git-svn-id: svn://10.0.0.236/trunk@40970 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/tinderbox/showbuilds.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/webtools/tinderbox/showbuilds.cgi b/mozilla/webtools/tinderbox/showbuilds.cgi index 3016f8ed6fa..407a2bca420 100755 --- a/mozilla/webtools/tinderbox/showbuilds.cgi +++ b/mozilla/webtools/tinderbox/showbuilds.cgi @@ -466,9 +466,9 @@ sub tree_open { open(BATCH, "<../bonsai/data/$bonsai_tree/batch-${bid}.pl") or print "can't open batch-${bid}.pl
"; while ($line = ){ - if ($line =~ /^$::TreeOpen = '(\d+)';/) { + if ($line =~ /^\$::TreeOpen = '(\d+)';/) { $treestate = $1; - break; + last; } } close(BATCH);