diff options
author | Tyler Turner <tyler@tylerthecomputerguy.com> | 2014-09-09 15:34:16 -0400 |
---|---|---|
committer | Tyler Turner <tyler@tylerthecomputerguy.com> | 2014-09-09 15:34:16 -0400 |
commit | aa352bb322531f535f43251f0f030733f8dc84f8 (patch) | |
tree | 11549aa9d09a0bcebc1b92750f9e041386ce6140 /etc | |
parent | 38f5ac9baeedf8c4857ebf910096e40bc8afe227 (diff) | |
download | pfsense-aa352bb322531f535f43251f0f030733f8dc84f8.zip pfsense-aa352bb322531f535f43251f0f030733f8dc84f8.tar.gz |
Fix minor typo to name and port range
Typo on the name of the FaceTime shape rule, and missing 1 from Google
Talk port range.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/wizardapp.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/wizardapp.inc b/etc/inc/wizardapp.inc index 93c078b..53bd7ac 100644 --- a/etc/inc/wizardapp.inc +++ b/etc/inc/wizardapp.inc @@ -479,13 +479,13 @@ $othersplist = array(); $othersplist['facetime'] = array(); /* Facetime */ $othersplist['facetime'][] = array('Facetime-UDP-1', 'udp', '3478', '3479', 'both'); - $othersplist['facetime'][] = array('Facetime-UDP-2', 'tcp', '16384', '16387', 'both'); - $othersplist['facetime'][] = array('Facetime-UDP-3', 'tcp', '16393', '16402', 'both'); + $othersplist['facetime'][] = array('Facetime-TCP-1', 'tcp', '16384', '16387', 'both'); + $othersplist['facetime'][] = array('Facetime-TCP-2', 'tcp', '16393', '16402', 'both'); $othersplist['googlehangouts'] = array(); /* Google Hangouts */ $othersplist['googlehangouts'][] = array('GoogleHangouts-UDP', 'udp', '19302', '19309', 'both'); - $othersplist['googlehangouts'][] = array('GoogleHangouts-TCP', 'tcp', '19305', '9309', 'both'); + $othersplist['googlehangouts'][] = array('GoogleHangouts-TCP', 'tcp', '19305', '19309', 'both'); $othersplist['icq'] = array(); /* icq */ |