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

add .rnc support

This commit is contained in:
Mark Andrews
2006-12-22 01:41:55 +00:00
parent 7dc0a09c4b
commit c427260a86

View File

@@ -15,7 +15,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: merge_copyrights,v 1.26 2006/10/05 00:31:43 marka Exp $ # $Id: merge_copyrights,v 1.27 2006/12/22 01:41:55 marka Exp $
%file_types = (); %file_types = ();
%file_years = (); %file_years = ();
@@ -80,6 +80,8 @@ while (<FILES>) {
$file_types{$_} = "ZONE"; $file_types{$_} = "ZONE";
} elsif ($base =~ /(\/\.cvsignore|\.gif|\.jpg|\.dsp|\.dsw)$/i) { } elsif ($base =~ /(\/\.cvsignore|\.gif|\.jpg|\.dsp|\.dsw)$/i) {
$file_types{$_} = "X"; $file_types{$_} = "X";
} elsif ($base =~ /(\.rnc/i) {
$file_types{$_} = "RNC";
} else { } else {
$file_types{$_} = "?"; $file_types{$_} = "?";
} }