diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-12-07 16:29:07 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-12-07 16:29:07 +0000 |
commit | 34aeaaa5a5ee01ccc47263ad8516ef94269c1e5a (patch) | |
tree | 785f6c03a4784777db78b73dd1ad116b8e4181da /packages | |
parent | 97047be9ab3b89857f4e5a0473e1c0afcf2a935f (diff) | |
download | pfsense-packages-34aeaaa5a5ee01ccc47263ad8516ef94269c1e5a.tar.gz pfsense-packages-34aeaaa5a5ee01ccc47263ad8516ef94269c1e5a.tar.bz2 pfsense-packages-34aeaaa5a5ee01ccc47263ad8516ef94269c1e5a.zip |
Fix pure-ftpd custom port settings
Ticket #723
Diffstat (limited to 'packages')
-rw-r--r-- | packages/pure-ftpdsettings.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/pure-ftpdsettings.xml b/packages/pure-ftpdsettings.xml index 605b7818..676cc39a 100644 --- a/packages/pure-ftpdsettings.xml +++ b/packages/pure-ftpdsettings.xml @@ -96,7 +96,7 @@ if($_POST['connections']) $startline .= " -c " . $_POST['connections']; if($_POST['connectionsperip']) $startline .= " -C " . $_POST['connectionsperip']; if($_POST['cutoffthreshold']) $startline .= " -k " . $_POST['cutoffthreshold'];; - if($_POST['beginport'] and $_POST['endport']) $startline .= " -P " . $_POST['beginport'] . ":" . $_POST['endport']; + if($_POST['beginport'] and $_POST['endport']) $startline .= " -p " . $_POST['beginport'] . ":" . $_POST['endport']; if($_POST['uploadbw'] and $_POST['downloadbw']) $startline .= " -T " . $_POST['uploadbw'] . ":" . $_POST['downloadbw'];; if($_POST['natworkaround']) $startline .= " -N"; if($_POST['filedeletion']) $startline .= " -K"; |