diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2009-11-04 08:15:57 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2009-11-04 08:15:57 -0800 |
commit | 198f9a033a8d9cdb2220579cc2df1484476b2c93 (patch) | |
tree | f677ea17d7d5e2fdbb22bba0cee6f41238c6d4a9 /lib/Vyatta | |
parent | d24423e69941fb54de93fa997c06463208e6a38d (diff) | |
download | vyatta-cfg-198f9a033a8d9cdb2220579cc2df1484476b2c93.tar.gz vyatta-cfg-198f9a033a8d9cdb2220579cc2df1484476b2c93.zip |
Fix missing semicolon.
Diffstat (limited to 'lib/Vyatta')
-rwxr-xr-x | lib/Vyatta/Interface.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Interface.pm b/lib/Vyatta/Interface.pm index ce909f0..513f686 100755 --- a/lib/Vyatta/Interface.pm +++ b/lib/Vyatta/Interface.pm @@ -228,7 +228,7 @@ sub carrier { or return; my $val = <$carrier>; - $val = 0 if ! defined $val # proc entry not readable on down interface + $val = 0 if ! defined $val; # proc entry not readable on down interface chomp $val; close $carrier; return $val; |