Ethereal-dev: [Ethereal-dev] -xV tethereal options

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: "Gisle Vanem" <giva@xxxxxxxxx>
Date: Sat, 20 Dec 2003 08:53:55 +0100
>From tethereal.pod:
-x  Cause Tethereal to print a hex and ASCII dump of the packet data
     after printing the summary or protocol tree.

Is this still true? But '-x' cannot be used without '-V'. It causes an 
assert fail at bottom of print.c. Simply removing the assert works 
fine AFAICS:

--- print.c.orig    Mon Dec 15 10:45:32 2003
+++ print.c     Sat Dec 20 08:45:39 2003
@@ -687,7 +687,4 @@
                fputs(line, fh);
                putc('\n', fh);
        }
-       else {
-               g_assert_not_reached();
-       }
 }

--gv