aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-artnet.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-01-23 02:30:00 +0000
committerGuy Harris <guy@alum.mit.edu>2014-01-23 02:30:00 +0000
commit8944519bf467cfb42b73bc968498135263d522d2 (patch)
tree9132cf49f0d36a9cda10e5d28ed0a3ee6db4e3b8 /epan/dissectors/packet-artnet.c
parent138987aea08b0d4b47b25f9554d182f6ea799401 (diff)
Use tvb_get_string_enc() rather than tvb_get_string().
Update URL of spec. svn path=/trunk/; revision=54924
Diffstat (limited to 'epan/dissectors/packet-artnet.c')
-rw-r--r--epan/dissectors/packet-artnet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-artnet.c b/epan/dissectors/packet-artnet.c
index 6bab2b4b20..ce11f94df5 100644
--- a/epan/dissectors/packet-artnet.c
+++ b/epan/dissectors/packet-artnet.c
@@ -33,7 +33,7 @@
/*
* See
*
- * http://www.artisticlicence.com/art-net.pdf
+ * http://www.artisticlicence.com/WebSiteMaster/User%20Guides/art-net.pdf
*/
void proto_register_artnet(void);
@@ -2456,7 +2456,7 @@ dissect_artnet(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) {
}
col_append_fstr(pinfo->cinfo, COL_INFO, "%s",
- tvb_get_string(wmem_packet_scope(), tvb, offset, 8));
+ tvb_get_string_enc(wmem_packet_scope(), tvb, offset, 8, ENC_ASCII|ENC_NA));
if (tree) {
proto_tree_add_item(artnet_header_tree, hf_artnet_header_id,
tvb, offset, 8, ENC_ASCII|ENC_NA);