diff options
author | Kim <kim.sidney@gmail.com> | 2019-01-21 12:22:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-21 12:22:11 +0100 |
commit | a1121dbb2f99e61103ee3973a2f719396162ddb2 (patch) | |
tree | a1726384217985c83fb3cf3ac3f68b1b7379f044 /scripts | |
parent | d8557aae8831317163ba884ec12e5f2b47633ecc (diff) | |
download | vyatta-cfg-vpn-a1121dbb2f99e61103ee3973a2f719396162ddb2.tar.gz vyatta-cfg-vpn-a1121dbb2f99e61103ee3973a2f719396162ddb2.zip |
fix typo in dead-pear-detection
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/dmvpn-config.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dmvpn-config.pl b/scripts/dmvpn-config.pl index 03897ae..a1d80a8 100755 --- a/scripts/dmvpn-config.pl +++ b/scripts/dmvpn-config.pl @@ -291,7 +291,7 @@ if ( $vcVPN->exists('ipsec') ) { my $dpd_action = $vcVPN->returnValue("ipsec ike-group $ike_group dead-peer-detection action"); if ( defined($dpd_interval) && defined($dpd_timeout) && defined($dpd_action) ) { $genout .= "\t\tdpd_delay = $dpd_interval" . "s\n"; - $genout .= "\t\tdpd_timeou = $dpd_timeout" . "s\n"; + $genout .= "\t\tdpd_timeout = $dpd_timeout" . "s\n"; } } |