aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mpeg-pes.c
diff options
context:
space:
mode:
authorSake Blok <sake@euronet.nl>2008-10-12 09:38:40 +0000
committerSake Blok <sake@euronet.nl>2008-10-12 09:38:40 +0000
commitb49434dcd256d7081d8f9a27b39ebf007d47e16b (patch)
treeb46aaba2d94d9c5aaed2548c1bd8dd47bb795794 /epan/dissectors/packet-mpeg-pes.c
parent9a50932bcf187085ec412b9c468dff7b12bd40a7 (diff)
From SUZUKI, Shinsuke <suz@kame.net> (bug 2956):
Remove non-ascii characters to prevent compilation failure on non-european windows. svn path=/trunk/; revision=26420
Diffstat (limited to 'epan/dissectors/packet-mpeg-pes.c')
-rw-r--r--epan/dissectors/packet-mpeg-pes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mpeg-pes.c b/epan/dissectors/packet-mpeg-pes.c
index 1087f37f5f..5ffbdfb087 100644
--- a/epan/dissectors/packet-mpeg-pes.c
+++ b/epan/dissectors/packet-mpeg-pes.c
@@ -850,9 +850,9 @@ dissect_mpeg_pes(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
offset = dissect_mpeg_pes_Stream(tvb, offset, &asn1_ctx,
tree, hf_mpeg_pes_extension);
/* https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2229
- * “A value of 0 indicates that the PES packet length is neither specified nor
+ * "A value of 0 indicates that the PES packet length is neither specified nor
* bounded and is allowed only in PES packets whose payload is a video elementary
- * stream contained in Transport Stream packets.”
+ * stream contained in Transport Stream packets."
* XXX Some one with access to the spec should check this
*/
if(length !=0 && stream != STREAM_VIDEO){