2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00
This commit is contained in:
Mark Andrews 2005-05-18 03:31:31 +00:00
parent 4f0b171c0e
commit 8f8634e663

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.16 2005/05/17 03:54:26 marka Exp $ # $Id: update_branches,v 1.17 2005/05/18 03:31:31 marka Exp $
# #
# Track which branches are still open or not in the bind9 cvs repository. # Track which branches are still open or not in the bind9 cvs repository.
@ -101,7 +101,7 @@ while (<FILES>) {
open(FILE, "cvs -d $repository rlog -h $_|") || die "can't start cvs rlog -h $_: $!"; open(FILE, "cvs -d $repository rlog -h $_|") || die "can't start cvs rlog -h $_: $!";
while (<FILE>) { while (<FILE>) {
chomp; chomp;
next unless m/^symbols$/; # skip until we find the tags next unless m/^symbolic names:$/; # skip until we find the tags
while (<FILE>) { while (<FILE>) {
chomp; chomp;
last if (m/^locks;/); # we are past the tags last if (m/^locks;/); # we are past the tags