aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--doc/ethereal.pod5
-rw-r--r--packet-sdp.c4
3 files changed, 7 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index fd7702afec..2ec2ddba6d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -2027,6 +2027,7 @@ And assorted fixes and enhancements by the people listed above and by:
D. Manzella <manzella [AT] lucent.com>
Jari Mustajarvi <jari.mustajarvi [AT] nokia.com>
Joost Yervante Damad <Joost.Damad [AT] siemens.com>
+ Thomas Anders <thomas.anders [AT] blue-cable.de>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.
diff --git a/doc/ethereal.pod b/doc/ethereal.pod
index 1d1fc58dd1..fbdea8e551 100644
--- a/doc/ethereal.pod
+++ b/doc/ethereal.pod
@@ -2077,6 +2077,9 @@ B<http://www.ethereal.com>.
Jan Kiszka <jan.kiszka [AT] web.de>
Joshua Craig Douglas <jdouglas [AT] enterasys.com>
Dick Gooris <gooris [AT] lucent.com>
+ Michael Shuldman <michaels [AT] inet.no>
+ Tadaaki Nagao <nagao [AT] iij.ad.jp>
+ Aaron Woo <woo [AT] itd.nrl.navy.mil>
Pavel Roskin <proski [AT] gnu.org>
Georgi Guninski <guninski [AT] guninski.com>
Jason Copenhaver <jcopenha [AT] typedef.org>
@@ -2109,7 +2112,7 @@ B<http://www.ethereal.com>.
D. Manzella <manzella [AT] lucent.com>
Jari Mustajarvi <jari.mustajarvi [AT] nokia.com>
Joost Yervante Damad <Joost.Damad [AT] siemens.com>
- Aaron Woo <woo [AT] itd.nrl.navy.mil>
+ Thomas Anders <thomas.anders [AT] blue-cable.de>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.
diff --git a/packet-sdp.c b/packet-sdp.c
index d6beec60d9..3ae34fca31 100644
--- a/packet-sdp.c
+++ b/packet-sdp.c
@@ -4,7 +4,7 @@
* Jason Lango <jal@netapp.com>
* Liberally copied from packet-http.c, by Guy Harris <guy@alum.mit.edu>
*
- * $Id: packet-sdp.c,v 1.44 2004/01/13 23:18:13 guy Exp $
+ * $Id: packet-sdp.c,v 1.45 2004/01/16 19:51:55 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -632,7 +632,7 @@ static void dissect_sdp_time(tvbuff_t *tvb, proto_item* ti){
/* 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);
}