]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix if clause
authorMark Andrews <marka@isc.org>
Mon, 16 May 2005 06:57:51 +0000 (06:57 +0000)
committerMark Andrews <marka@isc.org>
Mon, 16 May 2005 06:57:51 +0000 (06:57 +0000)
util/update_branches

index 806101558fa5a978fa478a12617111961c96ded5..886237b8ddc99f95f60cb6a4937bae1cb994b1e2 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.4 2005/05/16 06:39:39 marka Exp $
+# $Id: update_branches,v 1.5 2005/05/16 06:57:51 marka Exp $
 
 %branches = ();
 %whom = ();
@@ -28,7 +28,7 @@
 open(BRANCHES, "<doc/private/branches") || die "can't open util/branches: $!";
 while (<BRANCHES>) {
        chomp;
-       next if (/^-*$/
+       next if (/^-/);
        next if (/^Branch/);
        $c = "";
        if (m/\(.*\)/) {