hi, i believe in version 1.12 of epan/osi-utils.c a little bug got introduced; since the system-id output is screwed;
shouldn't print_system_id() call print_system_id_buf() ? diff attached; /hannes
Index: osi-utils.c =================================================================== RCS file: /cvsroot/ethereal/epan/osi-utils.c,v retrieving revision 1.13 diff -u -r1.13 osi-utils.c --- osi-utils.c 10 Sep 2003 06:48:55 -0000 1.13 +++ osi-utils.c 20 Nov 2003 07:49:59 -0000 @@ -81,7 +81,7 @@ gchar *cur; cur = str; - print_nsap_net_buf( ad, length, cur ); + print_system_id_buf(ad, length, cur ); return( cur ); }
