From 139986c92ef9147203844148c9cf78c70355b007 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 28 Jul 2005 06:26:38 +0000 Subject: don't needlessly swap bytes --- perl-install/network/activefw.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/network') diff --git a/perl-install/network/activefw.pm b/perl-install/network/activefw.pm index 6e3b781eb..ef6fdf8b9 100644 --- a/perl-install/network/activefw.pm +++ b/perl-install/network/activefw.pm @@ -85,7 +85,7 @@ sub get_service { sub get_ip_address { my ($addr) = @_; - inet_ntoa(pack('N', $addr)); + inet_ntoa(pack('L', $addr)); } sub resolve_address { -- cgit v1.2.1