mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
fix kconfig.pl split for config symbols that have "0" as value
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8847 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f5fb2a0aed
commit
86ca712e4a
@ -72,7 +72,7 @@ sub config_diff($$) {
|
||||
my %config;
|
||||
|
||||
foreach my $config (keys %$cfg2) {
|
||||
if (!$cfg1->{$config} or $cfg1->{$config} ne $cfg2->{$config}) {
|
||||
if (!defined($cfg1->{$config}) or $cfg1->{$config} ne $cfg2->{$config}) {
|
||||
$config{$config} = $cfg2->{$config};
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user