aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mpeg-pes.c
diff options
context:
space:
mode:
authorsake <sake@f5534014-38df-0310-8fa8-9805f1628bb7>2008-10-12 09:38:40 +0000
committersake <sake@f5534014-38df-0310-8fa8-9805f1628bb7>2008-10-12 09:38:40 +0000
commit365eba971d7c4cd96e0765f1ab97b81e6aa99339 (patch)
treeb46aaba2d94d9c5aaed2548c1bd8dd47bb795794 /epan/dissectors/packet-mpeg-pes.c
parentbccc1d5ec1a1185ff9293fac49276499d56f885a (diff)
From SUZUKI, Shinsuke <suz@kame.net> (bug 2956):
Remove non-ascii characters to prevent compilation failure on non-european windows. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26420 f5534014-38df-0310-8fa8-9805f1628bb7
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){