diff -uNr ethereal/packet-enip.c my-tree/packet-enip.c
--- ethereal/packet-enip.c	2003-08-15 20:53:41.000000000 -0500
+++ my-tree/packet-enip.c	2003-09-02 09:41:13.000000000 -0500
@@ -1262,7 +1262,12 @@
 		if( add_stat_size )
 		{
          /* Add additional status */
-         add_byte_array_text_to_proto_tree( item_tree, tvb, offset+4, add_stat_size, "Additional Status: " );
+         pi = proto_tree_add_text( item_tree, tvb, offset+4, add_stat_size, "Additional Status:" );
+
+         for( i=0; i < add_stat_size/2; i ++ )
+         {
+           proto_item_append_text( pi, " 0x%04X", tvb_get_letohs( tvb, offset+4+(i*2) ) );
+         }
 		}
 
       /* If there is any command specific data create a sub-tree for it */
