mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-22 06:37:42 -04:00
fix if clause
This commit is contained in:
parent
c6313caa6c
commit
35665db4e4
1 changed files with 2 additions and 2 deletions
|
|
@ -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/\(.*\)/) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue