From: Shawn Boyette Date: Wed, 17 Sep 2008 18:58:31 +0000 (+0000) Subject: forgot to put runtype in defaults set X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=e8286ca6a9ccf87d1e8ecca3efbd5afbd25c6d5f forgot to put runtype in defaults set --- diff --git a/fingerprinter b/fingerprinter index 231a8b2..cbcc9f9 100755 --- a/fingerprinter +++ b/fingerprinter @@ -306,11 +306,13 @@ sub initialize { $c->{subfield} = 'a' unless defined $c->{subfield}; $c->{output} = 'incoming.fp' unless defined $c->{output}; $c->{exception} = 'incoming.ex' unless defined $c->{exception}; + $c->{runtype} = 'full' unless defined $c->{runtype}; } elsif ($c->{incumbent}) { $c->{tag} = 901 unless defined $c->{tag}; $c->{subfield} = 'c' unless defined $c->{subfield}; $c->{output} = 'incumbent.fp' unless defined $c->{output}; $c->{exception} = 'incumbent.ex' unless defined $c->{exception}; + $c->{runtype} = 'full' unless defined $c->{runtype}; } my @keys = keys %{$c};