diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-03 11:53:50 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-03 11:53:50 -0800 |
commit | 300f2f918be3e807f628ad1200a72e389a59ecfe (patch) | |
tree | 22d45565628e90e73cc412b343b3c21e55f386d6 /scripts | |
parent | f120eee288860f3fb6582100ff68d4d5a1222698 (diff) | |
download | vyatta-cfg-300f2f918be3e807f628ad1200a72e389a59ecfe.tar.gz vyatta-cfg-300f2f918be3e807f628ad1200a72e389a59ecfe.zip |
Missing semicolon
Mistake in earlier change.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-load-config.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-load-config.pl b/scripts/vyatta-load-config.pl index 6036685..5c73eb1 100755 --- a/scripts/vyatta-load-config.pl +++ b/scripts/vyatta-load-config.pl @@ -140,7 +140,7 @@ if ( $xorp_cfg or !$valid_cfg ) { exit 1; } } -close $cfg +close $cfg; # log it openlog( $0, "", LOG_USER ); |