Skip to content

Commit

Permalink
(ipsec, psk) missing space in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AdSchellevis committed Sep 30, 2016
1 parent 76c66b2 commit 6e5f235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etc/inc/ipsec.inc
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ EOD;
$peerid_data = isset($ph1ent['mobile']) ? "%any" : ipsec_find_id($ph1ent, "peer", $rgmap);

if (!empty($peerid_data)) {
$pskconf .= $myid . trim($peerid_data) . " : PSK 0s" . base64_encode(trim($ph1ent['pre-shared-key'])) . "\n";
$pskconf .= $myid . " " . trim($peerid_data) . " : PSK 0s" . base64_encode(trim($ph1ent['pre-shared-key'])) . "\n";
}
}
}
Expand Down

0 comments on commit 6e5f235

Please sign in to comment.