2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

state wasn't properly cleared between files

This commit is contained in:
Brian Wellington
2000-10-10 23:07:35 +00:00
parent 7d34762a96
commit 70c7872be6

View File

@@ -15,7 +15,7 @@
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: sanitize.pl,v 1.11 2000/10/10 22:46:46 bwelling Exp $ # $Id: sanitize.pl,v 1.12 2000/10/10 23:07:35 bwelling Exp $
# Don't try and sanitize this file: NOMINUM_IGNORE # Don't try and sanitize this file: NOMINUM_IGNORE
@@ -84,7 +84,9 @@ exit(0);
sub runfile($) { sub runfile($) {
$state = 0; for ($i = 0 ; $i < $curkeys; $i++) {
$state[$i] = 0;
}
$deletefile = 0; $deletefile = 0;
open(INFILE, $_[0]) || die ("$_[0]"); open(INFILE, $_[0]) || die ("$_[0]");