Skip to content

Commit b0a5577

Browse files
committed
Fix #129
1 parent 4988dd7 commit b0a5577

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

net/pfSense-pkg-WireGuard/files/usr/local/pkg/wireguard/wg_globals.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ $wgg = array(
9191
WG_ERROR_IF_SYNC => gettext('Unable to sync WireGuard tunnel configuration with wg(8)'),
9292
WG_ERROR_IF_DESTROY => gettext('Unable to destroy WireGuard tunnel interface')),
9393
'service' => array(
94-
WG_ERROR_SVC_DISABLED => gettext('WireGuard service is diabled'),
94+
WG_ERROR_SVC_DISABLED => gettext('WireGuard service is disabled'),
9595
WG_ERROR_SVC_RUNNING => gettext('WireGuard service is already running'),
9696
WG_ERROR_SVC_START => gettext('Unable to start WireGuard service'),
9797
WG_ERROR_SVC_STOP => gettext('Unable to stop WireGuard service'),

net/pfSense-pkg-WireGuard/files/usr/local/www/wg/vpn_wg_peers_edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@
217217
'persistentkeepalive',
218218
'Keep Alive',
219219
'text',
220-
$pconfig['persistentkeepalive']
220+
$pconfig['persistentkeepalive'],
221221
['placeholder' => 'Keep Alive']
222222
))->addClass('trim')
223223
->setHelp('Interval (in seconds) for Keep Alive packets sent to this peer.<br />

0 commit comments

Comments
 (0)