diff options
author | caseyr232 <c@sey.org.uk> | 2012-11-17 01:39:24 +0000 |
---|---|---|
committer | caseyr232 <c@sey.org.uk> | 2012-11-17 01:39:24 +0000 |
commit | 5debd85f88f3e9b2cbdbbe1fd308c7f0d5f9365f (patch) | |
tree | 5a07d328c2afed2f747b5833edba839d914046e5 | |
parent | fbc75dd5985edaa6e37e97c2bdb4f937d9303701 (diff) | |
download | pfsense-5debd85f88f3e9b2cbdbbe1fd308c7f0d5f9365f.zip pfsense-5debd85f88f3e9b2cbdbbe1fd308c7f0d5f9365f.tar.gz |
Corrected racoon path to psk.txt.
"path pre_shared_key \"{$g['varetc_path']}/psk.txt\";\n\n"; is incorrected, ammended to "path pre_shared_key \"{$g['varetc_path']}/ipsec/psk.txt\";\n\n";
-rw-r--r-- | etc/inc/vpn.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/vpn.inc b/etc/inc/vpn.inc index a8bf49e..bed2dcb 100644 --- a/etc/inc/vpn.inc +++ b/etc/inc/vpn.inc @@ -4,7 +4,7 @@ vpn.inc Copyright (C) 2004 Scott Ullrich Copyright (C) 2008 Shrew Soft Inc - Copyright (C) 2008 Ermal Luçi + Copyright (C) 2008 Ermal Lu�i All rights reserved. originally part of m0n0wall (http://m0n0.ch/wall) @@ -309,7 +309,7 @@ function vpn_ipsec_configure($ipchg = false) if ((is_array($a_phase1) && count($a_phase1)) || (is_array($a_phase2) && count($a_phase2))) { $racoonconf .= "# This file is automatically generated. Do not edit\n"; - $racoonconf .= "path pre_shared_key \"{$g['varetc_path']}/psk.txt\";\n\n"; + $racoonconf .= "path pre_shared_key \"{$g['varetc_path']}/ipsec/psk.txt\";\n\n"; $racoonconf .= "path certificate \"{$g['varetc_path']}\";\n\n"; /* begin listen section */ |