Code

Updated list image
[gosa.git] / gosa-si / modules / ArpWatch.pm
index 1b2f70a405baf99e0aa101c994dbe6f40577a4a4..e03bed4d0a30bd2635d57e7ef55bf04864a6a4ea 100644 (file)
@@ -3,7 +3,6 @@ package POE::Component::ArpWatch;
 
 use strict;
 use warnings;
-use utf8;
 
 BEGIN{
        eval('use POE');
@@ -172,6 +171,7 @@ sub _process_packet {
 sub _ipaddr { join( ".", unpack( "C4", pack( "N", oct( "0x". shift ) ) ) ) }
 sub _phys { join( ":", grep {length} split( /(..)/, shift ) ) }
 
+# vim:ts=4:shiftwidth:expandtab
 1;
 
 __END__