Fix file name in split_line error message for proxyndp file

This commit is contained in:
Tom Eastep 2011-04-10 13:19:42 -07:00
parent 2a445aca2a
commit ca46052410
2 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
package Shorewall::Compiler;
require Exporter;
use Shorewall::Config qw(:DEFAULT :internal);

View File

@ -118,7 +118,7 @@ sub setup_proxy_arp() {
while ( read_a_line ) {
my ( $address, $interface, $external, $haveroute, $persistent ) = split_line 3, 5, 'proxyarp file';
my ( $address, $interface, $external, $haveroute, $persistent ) = split_line 3, 5, $file_opt;
if ( $first_entry ) {
progress_message2 "$doing $fn...";