Skip to content

Commit

Permalink
Fixed incorrect call to a function
Browse files Browse the repository at this point in the history
  • Loading branch information
jrouzierinverse committed May 8, 2014
1 parent 8f5492e commit decae56
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -135,7 +135,7 @@ sub _build_clientMac {
if (defined $clientIp) {
$clientIp = clean_ip($clientIp);
while ( my ($network,$network_config) = each %ConfigNetworks ) {
next unless defined $network_config->{'fake_mac_enabled'} && enabled($network_config->{'fake_mac_enabled'});
next unless defined $network_config->{'fake_mac_enabled'} && isenabled($network_config->{'fake_mac_enabled'});
next if !pf::config::is_network_type_inline($network);
my $net_addr = NetAddr::IP->new($network,$network_config->{'netmask'});
my $ip = new NetAddr::IP::Lite $clientIp;
Expand Down

0 comments on commit decae56

Please sign in to comment.