diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
commit | 84123931970a8a0f1af281e7351eadabba3c0908 (patch) | |
tree | 90c18fd2b2f7ddb3e9eac08059e59c3e0068f743 /packet-rtsp.c | |
parent | b9222c0011e362d2ba9895af4eaef04a3d72c8c6 (diff) | |
download | wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.gz wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.bz2 wireshark-84123931970a8a0f1af281e7351eadabba3c0908.zip |
From Joerg Mayer: explicitly fill in all members of a
"header_field_info" structure, including the ones that are later set by
the routines to register fields.
svn path=/trunk/; revision=3561
Diffstat (limited to 'packet-rtsp.c')
-rw-r--r-- | packet-rtsp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-rtsp.c b/packet-rtsp.c index cb0e7612d9..439156ef40 100644 --- a/packet-rtsp.c +++ b/packet-rtsp.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-rtsp.c,v 1.37 2001/05/31 20:40:29 guy Exp $ + * $Id: packet-rtsp.c,v 1.38 2001/06/18 02:17:51 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -698,11 +698,11 @@ proto_register_rtsp(void) }; static hf_register_info hf[] = { { &hf_rtsp_method, - { "Method", "rtsp.method", FT_STRING, BASE_NONE, NULL, 0 }}, + { "Method", "rtsp.method", FT_STRING, BASE_NONE, NULL, 0, "", HFILL }}, { &hf_rtsp_url, - { "URL", "rtsp.url", FT_STRING, BASE_NONE, NULL, 0 }}, + { "URL", "rtsp.url", FT_STRING, BASE_NONE, NULL, 0, "", HFILL }}, { &hf_rtsp_status, - { "Status", "rtsp.status", FT_UINT32, BASE_DEC, NULL, 0 }}, + { "Status", "rtsp.status", FT_UINT32, BASE_DEC, NULL, 0, "", HFILL }}, }; proto_rtsp = proto_register_protocol("Real Time Streaming Protocol", |