Ethereal-dev: [Ethereal-dev] Patch for packet-sdp.c

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

From: Thomas Anders <thomas.anders@xxxxxxxxxxxxx>
Date: Fri, 16 Jan 2004 14:10:30 +0100
This trivial patch (against nightly tarball) fixes a long-standing typo in
packet-sdp.c regarding the SDP "t" parameter handling. Now "Stop time" should
be displayed as such. Works for me.


+Thomas

--
Thomas Anders (thomas.anders at blue-cable.de)
--- ethereal-2004-01-15/packet-sdp.c	2004-01-14 00:18:13.000000000 +0100
+++ packet-sdp.c	2004-01-16 13:34:47.000000000 +0100
@@ -632,7 +632,7 @@
 
   /* get stop time */
   offset = next_offset + 1;
-  proto_tree_add_item(sdp_time_tree,hf_time_start, tvb,
+  proto_tree_add_item(sdp_time_tree, hf_time_stop, tvb,
 		      offset, -1, FALSE);
 }