diff options
author | erkin <e.altunbas@vyos.io> | 2021-04-23 12:50:53 +0300 |
---|---|---|
committer | erkin <e.altunbas@vyos.io> | 2021-04-23 12:50:53 +0300 |
commit | b12811b7708ea5250590494001cda377fa6a3fbf (patch) | |
tree | 5269b329430058e52b9de6dd3d156177f4e190c1 | |
parent | 36572b825c4aa9240b665e088453a1e80a23055b (diff) | |
download | vyatta-config-mgmt-b12811b7708ea5250590494001cda377fa6a3fbf.tar.gz vyatta-config-mgmt-b12811b7708ea5250590494001cda377fa6a3fbf.zip |
Forgot a semicolon
-rwxr-xr-x | scripts/vyatta-commit-push.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-commit-push.pl b/scripts/vyatta-commit-push.pl index 3580378..bd8efc0 100755 --- a/scripts/vyatta-commit-push.pl +++ b/scripts/vyatta-commit-push.pl @@ -74,7 +74,7 @@ my $source_address = $config->returnEffectiveValue('source-address'); if (defined($source_address)) { print("Using source address $source_address\n"); # The string needs to be wrapped in quotes. - $source_address = '"' . $source_address . '"' + $source_address = '"' . $source_address . '"'; } # Otherwise, we're going to pass None. else { |